在Numpy.ndarray.__pos__()
方法的帮助下,人们可以将数组中的每个元素都乘以1,因此,结果数组的值与原始数组相同。
语法: ndarray.__pos__($self, /)
返回: +self
例子#1 :
在这个例子中,我们可以看到在应用numpy.__pos__()
之后,我们得到的简单数组可以和原始数组一样。
# import the important module in python
import numpy as np
# make an array with numpy
gfg = np.array([1, -2, 3, 4, 5, 6])
# applying numpy.__pos__() method
print(gfg.__pos__())
输出:
[ 1 -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],
[-6, 5, 4, 3, 2, -1]])
# applying numpy.__pos__() method
print(gfg.__pos__())
输出:
[[ 1 2 -3 4 5 6]
[-6 5 4 3 2 -1]]