VOOZH about

URL: https://www.geeksforgeeks.org/python/numpy-flip-python/

⇱ numpy.flip() in Python - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

numpy.flip() in Python

Last Updated : 8 Mar, 2024

The numpy.flip() function reverses the order of array elements along the specified axis, preserving the shape of the array.
 

Syntax: numpy.flip(array, axis)


Parameters : 

array : [array_like]Array to be input 
axis : [integer]axis along which array 
 is reversed.


Returns : 

reversed array with shape preserved

Output : 

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

 [[4 5]
 [6 7]]]

Flipped array : 
 [[[4, 5]
 [6, 7]]

 [[0, 1]
 [2, 3]]]

Note : 
These codes won't run on online IDE's. So please, run them on your systems to explore the working. 

Comment