Open In App

numpy.fliplr() in Python

Last Updated : 08 Mar, 2024
Improve
Improve
Like Article
Like
Save
Share
Report

numpy.fliplr(array) : Flip array(entries in each column) in left-right direction, shape preserved
Parameters :

array : [array_like]Input array, we want to flip

Return :

Flipped array in left-right direction.




# Python Program illustrating
# numpy.fliplr() method
  
import numpy as geek
  
array = geek.arange(8).reshape((2,2,2))
print("Original array : \n", array)
  
# fliplr : means flip left-right
print("\nFlipped array left-right : \n", geek.fliplr(array))


Output :

Original array : 
 [[[0 1]
  [2 3]]

 [[4 5]
  [6 7]]]

Flipped array left-right : 
 [[[2 3]
  [0 1]]

 [[6 7]
  [4 5]]]

Note :
These codes won’t run on online IDE’s. Please run them on your systems to explore the working.


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads