I cannot seem to make a list from an input and not have that list separate any multi-digit numbers into individual numbers. e.g. 100 becomes 1, 0, 0, 284 becomes 2, 8, 4, and so on.
data = list(input("What is your data? must be numbers separated by spaces\n"))
print(data)
If I entered my data as: 1 2 3 100, it would print as 1, 2, 3, 1, 0, 0. Is there any way I can have it instead be 1, 2, 3, 100?