return first and last element of list code example
Example 1: last element of list python
list1 = ['a','b','c']
print(list1[-1])
Example 2: indexing python first and last
l = [1,2,3,4,5]
l[::len(l)-1]
list1 = ['a','b','c']
print(list1[-1])
l = [1,2,3,4,5]
l[::len(l)-1]