Python zählen, wie oft ein Charakter in einer Saite erscheint
str = "Hello world".lower()
result = str.count('world')
print(result)
#the ouput will be 1 because in the variable "str" the letter "world" appers only one time :)
Mysterious Mink