get last item in array python code example
Example 1: python last element in list
bikes = ['trek', 'redline', 'giant']
bikes[-1]
Example 2: python get last element in list
l = [1, 2, 3]
l[-1]
Example 3: get last element of a list python
a = [1, 2, 3, 4]
print(a[-1])
print(a[-2])
Example 4: last element of list python
list1 = ['a','b','c']
print(list1[-1])
Example 5: python how to get the last element in a list
some_list = [1, 2, 3]
some_list[-1]
print(some_list)
Example 6: get last item in array python
list = [1, 2, 3]
print(list[-1])