Very basic question but how would I change a given input of space separated numbers into a list: e.g.
t = input("Enter some numbers: ")
# for example sake the user inputs: 4 5 10 9 8
# I want to then convert these numbers into a list of [4, 5, 10, 9, 8]