summaryrefslogtreecommitdiff
path: root/progs/a83.py
blob: 213440bfc0134c6ac9c8797073cc88123efaaf08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
def count_Char(str,x): 
    count = 0
    for i in range(len(str)):  
        if (str[i] == x) : 
            count += 1
    n = 10
    repititions = n // len(str)  
    count = count * repititions  
    l = n % len(str)  
    for i in range(l): 
        if (str[i] == x):  
            count += 1
    return count