Python Numpy numpy.ndarray.__add__()

Numpy numpy.ndarray.__add__()的帮助下,我们可以在ndarray.__add__()方法中添加一个作为参数提供的特定值。值将被添加到numpy数组的每一个元素中。

语法: ndarray.__add__($self, value, /)

返回: self+value

例子#1 :
在这个例子中,我们可以看到数组中的每一个元素都被添加到方法ndarray.__add__()中作为参数的值。记住一件事,它对双倍类型的值不起作用。

# 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.__add__() method
print(gfg.__add__(5))

输出:

[ 6  7  8  9  10]

例子#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.__add__() method
print(gfg.__add__(5))

输出:

[[ 6  7  8  9  10]
 [11  10  9  8  7]]

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程