Reverse String using Python April 22, 2021 Python 0 Comments 407 Views Slicing text = 'Hello world' result = text[::-1] print(result)
Leave a Comment
Cancel reply