count method in python code example
Example 1: count in python string
string.count(substring, start, end)
# Start and end is optional
Example 2: string count substring occurences pytohn
string.count(substring, [start_index], [end_index])
Example 3: python count
Format: string.count(sub, start= 0,end=len(string))
string = "Add Grepper Answer"
print(string.count('e')
>>> 3
Example 4: count in python
it counts the number of elements in the list or in the string(words)
Example 5: what is the use of count function in python
count = 0
while count < 10 :
print("Hello")
count += 1