reverse printing in python code example
Example 1: how to reverse a string in python
belief = "the world is mine, hello"[::-1]
print(belief)
Example 2: print backwards python
encrypted_message = "!XgXnXiXcXiXlXsX XnXoXhXtXyXpX XgXnXiXnXrXaXeXlX XmXaX XI"
encrypted_message[-1:0:-2]