python get the last element of a list that is not None code example
Example 1: python get last element in list
l = [1, 2, 3]
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]
l[-1]
if x == my_list[-1]:
# do what you want