python get last e code example
Example 1: python get last item in a list
my_list = ["I", "Love", "Python"]
last_item_in_list = my_list[-1]
# last_item_in_list = "Python"
Example 2: how to get last element of string in python
sample_str = 'Sample String'
# Get last character of string i.e. char at index position -1
last_char = sample_str[len(sample_str) - 1]
print('Last character : ', last_char)
# Output
Last charater : g