Remove First N Characters from String using Python July 6, 2021 Python 0 Comments 227 Views Slicing text = 'HelloWorld!' n = 5 result = text[n:] print(result) # World!
Leave a Comment
Cancel reply