在Numpy numpy.ndarray.__invert__()
的帮助下,我们可以反转一个数组的元素。我们不需要提供任何类型的参数,但是记住这个方法只对整数值有效。
语法: ndarray.__invert__($self, /)
返回: ~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__())
输出:
[-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__())
输出:
[[-2 -3 -4 -5 -6]
[-7 -6 -5 -4 -3]]