how to add word to list python code example
Example: how to put words into list
sentence = input("Line: ")
split_sentence = sentence.split()
print(split_sentence)
sentence = input("Line: ")
split_sentence = sentence.split()
print(split_sentence)