Python conte quantas vezes uma palavra aparece em uma string

# credit to Stack Overflow user in source link

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