python3 reverse code example
Example 1: 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)
Example 2: reverse python3
arr = [2,5,32,86,4,131,97]
# reverse without modifying input, using range:
for i in range(len(arr)-1, -1, -1):
print(arr[i])
# reverse and modifying input:
arr.reverse()