You can use reverse() to reverse array in Python.
Example:
import array as myarray
number = myarray.array('b', [1,2, 3])
number.reverse()
print(number)
You can use reverse() to reverse array in Python.
Example:
import array as myarray
number = myarray.array('b', [1,2, 3])
number.reverse()
print(number)