python get last item in list code example

Example 1: python last element in list

# To get the last element in a list you use -1 as position
bikes = ['trek', 'redline', 'giant']
bikes[-1]
# Output:
# 'giant'

Example 2: how to get last element of list in python

MyList = [1, 2, 3, 4, 5]
print(MyList[len(Mylist)-1])
# Makes you look professional

Example 3: get the last element of a list python

print(list[-1])

Example 4: python get last item in a list

my_list = ["I", "Love", "Python"]
last_item_in_list = my_list[-1]
# last_item_in_list = "Python"

Example 5: how to find the last item of a list

list1 = ['a','b','c']
print(list1[-1])

Example 6: python select last item in list

# Basic syntax:
your_list[-1]

# Example usage:
your_list = [1, 'amazing', 'list']
your_list[-1]
--> 'list'