1 2 3 4 5 6
def count(s,c) : res = 0 for i in range(len(s)) : if (s[i] == c): res = res + 1 return res