check if an item is the last in an array python code example
Example 1: last element in list py
l = [1,2,3,4,5]
last = l[len(l)-1]
Example 2: check if is the last element in list python
if x == my_list[-1]:
# do what you want
l = [1,2,3,4,5]
last = l[len(l)-1]
if x == my_list[-1]:
# do what you want