Contact: aviboots(AT)netvision.net.il
41,370 questions
53,902 answers
573 users
lst = [1, 2, 3, 4, 5, 6] print(lst[-1]) print(lst[-3]) ''' run: 6 4 '''