Contact: aviboots(AT)netvision.net.il
39,864 questions
51,786 answers
573 users
lst1 = [4, 9, 0, 7, 8]; lst2 = [None] * len(lst1); for i in range(0, len(lst1)): lst2[i] = lst1[i]; for i in range(0, len(lst2)): print(lst2[i]) ''' run: 4 9 0 7 8 '''