python mirror text code example
Example 1: how to reverse a string in python
'your sting'[::-1]
Example 2: reverse in python 3
# create list of integers or strings
number = [1,2,3,4,5]
# pass the values using the reverse method.
number.reverse()
# Then print the variable as such:
print(number)