DSA/strings/python/word_count.py

11 lines
268 B
Python
Raw Normal View History

def word_count(s: str) -> int:
return len(s.lower().split())
def unique_word_count(s: str) -> int:
return len(set(s.lower().split()))
for s in ("The Matrix", "To Be or Not to Be", "Kiss Kiss Bang Bang"):
print(s, word_count(s), unique_word_count(s))