Python Get Num Chars

mystr = "This is my string"
count = mystr.count(i)
# count = 3
Av3