Contact: aviboots(AT)netvision.net.il
39,885 questions
51,811 answers
573 users
lst = list() for i in range(0, 10): lst.append(i) print(lst) for val in lst: print(val) ''' run: array('i', [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]) 0 1 2 3 4 5 6 7 8 9 '''