Question: Create a function that takes any string as input and returns the number of words for that string.
Hint 1: Convert the string to a list with split.
split
Hint 2: Once you do string.split(" "), then apply the lenmethod to the produced list.
string.split(" ")
len