get last element of array +python code example
Example 1: get the last element of a list python
print(list[-1])
Example 2: check if is the last element in list python
if x == my_list[-1]:
# do what you want
print(list[-1])
if x == my_list[-1]:
# do what you want