Jane Li
0
Q:

count py

Format: string.count(sub, start= 0,end=len(string))
string =  "Add Grepper Answer"
print(string.count('e')
>>> 3
7

    fruits = ['apple', 'banana', 'cherry']

x = fruits.count("cherry") # it is going to check how many times "cherry" is in the list fruits

results ==> 1

   
4

# string in which occurrence will be checked 
string = "geeks for geeks" 
  
# counts the number of times substring occurs in  
# the given string and returns an integer 
print(string.count("geeks")) 
3
it counts the number of elements in the list or in the string(words)
3

New to Communities?

Join the community