How to get the last character of a string in Python
To get the last character of a string, we can use the slice notation [] by passing -1: as an argument.
-1starts the range of the end of a string.
Here is an example, that gets the last character e from a given string.
str = "This is your house"
lastCharacter = str[-1:]
print (lastCharacter)Output:
eSimilarly, you can also use the slice notation to get the last n number of characters from a string.
In this below example, we are getting the last 4 characters of a given string.
str = "This is your house"
lastfour = str[-4:]
print (lastFour)Output:
ouse

