Answers for "count how many time something appears in string"

0

count no of time element present in a string

# define string
string = "Python is awesome, isn't it?"
substring = "is"

count = string.count(substring)

# print count
print("The count is:", count)
Posted by: Guest on June-05-2020

Code answers related to "count how many time something appears in string"

Python Answers by Framework

Browse Popular Code Answers by Language