Kód: Vybrat vše
from sys import argv
def createListFromZeroTo():
script, MaxNumber = argv
i = 0
numbers = []
while i < MaxNumber:
print "at the top i is", i
numbers.append(i)
i += 1
print "numbers now", numbers
print "at the bottom i is", i
print "the numbers:"
for num in numbers:
print num
createListFromZeroTo()Je to určitě nějaké hloupé přehlédnutí. Díky za pomoc

