Python set update() 方法更新集合,添加来自其他迭代的项目。
用法:
A.update(iterable)
这里,A
是一个集合,iterable
可以是任何可迭代对象,例如列表、集合、字典、字符串等。可迭代对象的元素被添加到集合 A
中。
让我们再举一个例子:
A.update(iter1, iter2, iter3)
在这里,将迭代 iter1
, iter2
和 iter3
的元素添加到集合 A
。
返回:
这个设置update()
方法返回None
(不返回任何内容)。
示例 1:Python 集 update()
A = {'a', 'b'}
B = {1, 2, 3}
result = A.update(B)
print('A =', A)
print('result =', result)
输出
A = {'a', 1, 2, 3, 'b'} result = None
示例 2:将字符串和字典的元素添加到 Set
string_alphabet = 'abc'
numbers_set = {1, 2}
# add elements of the string to the set
numbers_set.update(string_alphabet)
print('numbers_set =', numbers_set)
info_dictionary = {'key': 1, 'lock' : 2}
numbers_set = {'a', 'b'}
# add keys of dictionary to the set
numbers_set.update(info_dictionary)
print('numbers_set =', numbers_set)
输出
numbers_set = {'c', 1, 2, 'b', 'a'} numbers_set = {'key', 'b', 'lock', 'a'}
注意:如果字典被传递给update()
方法,字典的键被添加到集合中。
相关用法
- Python Set update()用法及代码示例
- Python Set union()用法及代码示例
- Python Set issuperset()用法及代码示例
- Python Set difference_update()用法及代码示例
- Python Set pop()用法及代码示例
- Python Set add()用法及代码示例
- Python Set clear()用法及代码示例
- Python Set issubset()用法及代码示例
- Python Set isdisjoint()用法及代码示例
- Python Set intersection_update()用法及代码示例
- Python Set symmetric_difference()用法及代码示例
- Python Set symmetric_difference_update()用法及代码示例
- Python Set discard()用法及代码示例
- Python Set intersection()用法及代码示例
- Python Set copy()用法及代码示例
- Python Set difference()用法及代码示例
- Python Set remove()用法及代码示例
- Python Set转String用法及代码示例
- Python Pandas Series.cumsum()用法及代码示例
- Python Pandas Series.astype()用法及代码示例
注:本文由纯净天空筛选整理自 Python Set update()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。