Python menghitung berapa kali sebuah kata muncul dalam sebuah string

# credit to Stack Overflow user in source link

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