count in string python code example
Example 1: count in python string
string.count(substring, start, end)
# Start and end is optional
Example 2: python count
Format: string.count(sub, start= 0,end=len(string))
string = "Add Grepper Answer"
print(string.count('e')
>>> 3
Example 3: str count python
string.count(substring, start=..., end=...)
'recede'.count('e')
>>> 3
'recede'.count('e', 2, 4)
>>> 1
Example 4: count in python
it counts the number of elements in the list or in the string(words)
Example 5: count string python
#printing the number of characters in a string
print(len("String you want to count"))
#counting characters in a variable
a = "some string"
print(len(a))
Example 6: count substring in string python
def count_substring(string,sub_string):
l=len(sub_string)
count=0
for i in range(len(string)-len(sub_string)+1):
if(string[i:i+len(sub_string)] == sub_string ):
count+=1
return count