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