python list get the last element code example
Example 1: python last element in list
bikes = ['trek', 'redline', 'giant']
bikes[-1]
Example 2: access last element of list python
MyList=["Black","Blue","Red","Green"]
print(MyList[-1])
Example 3: get last element of a list python
a = [1, 2, 3, 4]
print(a[-1])
print(a[-2])
Example 4: python list last element
my_list = ['red', 'blue', 'green']
last_item = my_list[len(my_list) - 1]
last_item = my_list.pop()
last_item = my_list[-1]
*_, last_item = my_list
Example 5: python last element of list
>>> list[-1:]
[3]
>>> list[-1]
3