Comment compter la survenue d'un mot dans String Python
# define string
string = "Python is awesome, isn't it?"
substring = "is"
count = string.count(substring)
# print count
print("The count is:", count)
Galvik Codex