Cara memasukkan kata -kata ke dalam daftar

sentence = input("Line: ")
split_sentence = sentence.split()
print(split_sentence)
Vast Vole