Exemple Numpy Fliplr
# welcome to softhunt.net
# Python Program illustrating
# numpy.flip() method
import numpy as np
array = np.arange(27).reshape((3,3,3))
print("Original array : \n", array)
print("Flipped array : \n", np.fliplr(array))
Outrageous Ostrich