Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/data/en/tutorials/Tutorial_04_list.py
blob: 7f88f6e91db1f13a76d91e92c6bd531846ae2e00 (plain)
1
2
3
4
5
6
7
8
9
10
11
my_list = []

num = 1

while(num < 5):
    data = input("Please enter number " + str(num) + ":")
    my_list.append(int(data))
    num = num + 1

print "You entered the following numbers:"
print my_list