get last digit of string python code example

Example 1: how to select last 2 elements in a string python

>>>mystr = "abcdefghijkl"
>>>mystr[-4:]
'ijkl'

>>>mystr[:-4] #to select all but last 4 characters
'abcdefgh'

Example 2: check strings last letter python

sample_str = 'Sample String'
# Get last character of string i.e. char at index position -1
last_char = sample_str[-1]
 
print('Last character : ', last_char)
# Output
Last charater : g

Example 3: 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