get the last item in a list r code example
Example 1: how to get last item in list
# The smart way
list = ["first item", "second item", "third item"]
print(list[len(list) - 1])
# The proper way
print(list[-1])
Example 2: how to find the last item of a list
list1 = ['a','b','c']
print(list1[-1])