Contact: aviboots(AT)netvision.net.il
41,590 questions
54,230 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 '''