Python関数で文を分割し(入力)、各単語をリストに格納します。現在のコードでは文を分割していますが、単語をリストとして保存していません。それ、どうやったら出来るの?
def split_line(text):
# split the text
words = text.split()
# for each word in the line:
for word in words:
# print the word
print(words)
print(word)
最終行として使うつもりだったと思います。