Friday, September 5, 2025
HomeLanguagesnumpy.flip() in Python

numpy.flip() in Python

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

Python




# Python Program illustrating
# numpy.flip() method
 
import numpy as geek
 
array = geek.arange(8).reshape((2,2,2))
print("Original array : \n", array)
 
print("Flipped array : \n", geek.flip(array, 0))


Output : 

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

 [[4 5]
  [6 7]]]

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

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

References : 
https://docs.scipy.org/doc/numpy-dev/reference/generated/numpy.flip.html#numpy.flip
Note : 
These codes won’t run on online IDE’s. So please, run them on your systems to explore the working. 

This article is contributed by Mohit Gupta_OMG 😀. If you like Lazyroar and would like to contribute, you can also write an article using write.geeksforgeeks.org or mail your article to review-team@geeksforgeeks.org. See your article appearing on the Lazyroar main page and help other Geeks.
Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.
 

RELATED ARTICLES

Most Popular

Dominic
32264 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6634 POSTS0 COMMENTS
Nicole Veronica
11801 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11863 POSTS0 COMMENTS
Shaida Kate Naidoo
6750 POSTS0 COMMENTS
Ted Musemwa
7025 POSTS0 COMMENTS
Thapelo Manthata
6701 POSTS0 COMMENTS
Umr Jansen
6718 POSTS0 COMMENTS