Contact: aviboots(AT)netvision.net.il
41,301 questions
53,811 answers
573 users
lst = [1, 2, 3, 4, 5] for i in range(len(lst)): print(lst[i]) ''' run: 1 2 3 4 5 '''
lst = [1, 2, 3, 4, 5] for i in lst: print(i) ''' run: 1 2 3 4 5 '''