I'd like to write a python program that asks the user to input 7 numbers. This input should be converted into a list and display the individual numbers first, and then display the list as a whole. So my thought was i'd start with a for loop.
for a in range(1,8):
number = int(input("please enter a number"))
b = [a]
print(b)
So it should look like this:
please enter number: 4
4
please enter number: 14
14
please enter number: 25
25
(repeat 4 more times)
And in the end:
Your list is: [4, 14, 25, ...]