reverse slicing string python code example
Example 1: python 3 slice reverse
stringname[::-1]
Example 2: how to reverse a string in python
belief = "the world is mine, hello"[::-1]
print(belief)
stringname[::-1]
belief = "the world is mine, hello"[::-1]
print(belief)