Contact: aviboots(AT)netvision.net.il
41,683 questions
54,351 answers
573 users
lst = [4, 9, 0, 8, 3] for i in range(len(lst) - 1, -1, -1): print(lst[i]) ''' run: 3 8 0 9 4 '''