Get Last N Characters of String using Python

Slicing

text = 'HelloWorld!'
n = 6
result = text[-n:]

print(result)  # World!

Leave a Comment

Cancel reply

Your email address will not be published.