python how to pick the last element in a range code example
Example 1: check if is the last element in list python
if x == my_list[-1]:
# do what you want
Example 2: how to find the last item of a list
list1 = ['a','b','c']
print(list1[-1])
if x == my_list[-1]:
# do what you want
list1 = ['a','b','c']
print(list1[-1])