如何使用python中的add函数?

750次阅读
没有评论

如何使用python中的add函数?

如何使用python中的add函数?

add函数使用方法

1、numpy中加法运算

使用实例

import numpy as np
 
arr1 = np.array([[4, 7], [2, 6]], 
                 dtype = np.float64)

arr2 = np.array([[3, 6], [2, 8]], 
                 dtype = np.float64) 
 
# Addition of two Arrays
Sum = np.add(arr1, arr2)
print("Addition of Two Arrays: ")
print(Sum)

2、set中添加元素

add()方法用于给集合中添加元素,如果要添加的元素在集合中已经存在,则不添加。

使用实例

fruits = {"a", "b", "c"} 
fruits.add("d") 
print(fruits)

输出

{'a', 'b', 'c', 'd'}

以上就是python中add函数的两种用法,希望能对有所帮助哦~

神龙|纯净稳定代理IP免费测试>>>>>>>>天启|企业级代理IP免费测试>>>>>>>>IPIPGO|全球住宅代理IP免费测试

相关文章:

版权声明:wuyou2021-05-11发表,共计457字。
新手QQ群:570568346,欢迎进群讨论 Python51学习