how to you reverse a string in python code example
Example 1: python reverse string
'String'[::-1] #-> 'gnirtS'
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)