Python fonksiyonumun bir cümle (giriş) bölmesini ve her kelimeyi bir listede saklamasını istiyorum. Geçerli kodum cümleyi böler, ancak kelimeleri liste olarak saklamaz. Bunu nasıl yaparım?
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)
son hattın olarak kullanmak istedin.