python | numpy num py . ndaarray . _ _ _ reverse _()
哎哎哎:# t0]https://www . geeksforgeeks . org/python-num py-num py-ndaarray- _ _ reverse /
在**Numpy numpy.ndarray.__invert__()**
的帮助下,可以反转一个数组的元素。我们不必提供任何类型的参数,但请记住,此方法仅适用于整数值。
语法:n 数组。 反转 ($self,/)
返回:~自我
示例#1 :
在这个示例中,我们可以看到数组中的每个元素都是借助ndarray.__invert__()
方法对一元运算符 ~ 进行运算的。
# import the important module in python
import numpy as np
# make an array with numpy
gfg = np.array([1, 2, 3, 4, 5])
# applying ndarray.__invert__() method
print(gfg.__invert__())
Output:
[-2 -3 -4 -5 -6]
例 2 :
# import the important module in python
import numpy as np
# make an array with numpy
gfg = np.array([[1, 2, 3, 4, 5],
[6, 5, 4, 3, 2]])
# applying ndarray.__invert__() method
print(gfg.__invert__())
Output:
[[-2 -3 -4 -5 -6]
[-7 -6 -5 -4 -3]]