Ich möchte meine Python-Funktion, um einen Satz (Eingabe) zu teilen und speichern jedes Wort in einer Liste. Mein derzeitiger Code teilt den Satz auf, speichert die Wörter aber nicht als Liste. Wie kann ich das tun?
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)