ways to reverse a string in python code example
Example 1: python string reverse
'hello world'[::-1]
# 'dlrow olleh'
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)