# Get the Last Character of a string mystring = 'Grepper' lastcharacter = mystring[-1:] print(lastcharacter) # Greppe

Read more of this post