#Wrtie a function that reverses a string in a list in python code example
Example: how to reverse a string in python
belief = "the world is mine, hello"[::-1]
print(belief)
belief = "the world is mine, hello"[::-1]
print(belief)