Python Count combien de fois un mot apparaît dans une chaîne

# credit to Stack Overflow user in source link

sentence.lower().split().count(word)
wolf-like_hunter