I am trying to create a piece of code that allows me to ask the user to enter 5 numbers at once that will be stored into a list. For instance the code would would be ran and something like this would appear in the shell
Please enter five numbers separated by a single space only:
To which the user could reply like this
1 2 3 4 5
And then the numbers 1 2 3 4 5 would be stored into a list as integer values that could be called on later in the program.