Answers for "2nd to last index python"

0

2nd to last index python

# python code to get 2nd to last item in a list
my_list = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
print(my_list[-2])
Posted by: Guest on December-07-2020

Python Answers by Framework

Browse Popular Code Answers by Language