compter le nombre de mots dans une chaîne python
a_string = "you string here"
word_list = a_string.split()
number_of_words = len(word_list)
print(number_of_words)
the hacker man