access last element of a list python code example
Example 1: how to print last element in a list python
lis[len(lis)-1]
Example 2: python last element of list
>>> list[-1:] # returns indexed value
[3]
>>> list[-1] # returns value
3
lis[len(lis)-1]
>>> list[-1:] # returns indexed value
[3]
>>> list[-1] # returns value
3