0
Q:

value count in python

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

# 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
from collections import Counter
values=np.ones(10)
Counter(values)
0

New to Communities?

Join the community