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