summaryrefslogtreecommitdiff
path: root/progs/a65.py
blob: 8b3e0fb490d4336680f6054b2fa01a3ede4911c5 (plain)
1
2
3
4
5
6
def count_char(string,char):
 count = 0
 for i in range(len(string)):
    if(string[i] == char):
        count = count + 1
 return count