access the most recently added element to a list in python code example
Example 1: python last element of list
print(list[-1])
Example 2: python last element of list
>>> list[-1:] # returns indexed value
[3]
>>> list[-1] # returns value
3