How do I do this without string.count(), because it is listed as deprecated in Python v2.7.3 documentation?
string.count()
I am unable to find what I should use instea
The other way can be
strs.__len__()