update()是集合中的函数:用于将集合中的元素(作为参数传递)添加到集合中。
语法:set1.update(set2)这里set1是将在其中添加set2的集合。代码1:
参数:Update()方法仅接受一个参数。单个参数可以是集合, 列表, 元组或字典。它会自动转换为集合并添加到集合中。返回值:此方法将set2添加到set1且不返回任何内容。
# Python program to demonstrate the
# use of update() method list1 = [ 1 , 2 , 3 ]
list2 = [ 5 , 6 , 7 ]
list3 = [ 10 , 11 , 12 ]# Lists converted to sets
set1 = set (list2)
set2 = set (list1)# Update method
set1.update(set2)# Print the updated set
print (set1) # List is passed as an parameter which
# gets automatically converted to a set
set1.update(list3)
print (set1)
输出:
{1, 2, 3, 5, 6, 7}
{1, 2, 3, 5, 6, 7, 10, 11, 12}
【Python集合update()函数用法示例】代码2:
# Python program to demonstrate the
# use of update() method list1 = [ 1 , 2 , 3 , 4 ]
list2 = [ 1 , 4 , 2 , 3 , 5 ]
alphabet_set = { 'a' , 'b' , 'c' }# lists converted to sets
set1 = set (list2)
set2 = set (list1)# Update method
set1.update(set2) # Print the updated set
print (set1) set1.update(alphabet_set)
print (set1)
输出:
{1, 2, 3, 4, 5}
{1, 2, 3, 4, 5, 'c', 'b', 'a'}
首先, 你的面试准备可通过以下方式增强你的数据结构概念:Python DS课程。
推荐阅读
- Python设置和检索Tkinter变量的值
- Python使用Tkinter开发简单GUI计算器
- Python Kivy中的滑块小部件用法示例
- Python使用.kv文件的滑块小部件
- Python使用OpenCV进行微笑检测示例
- Python根据元素的长度对列表进行排序
- Python Kivy中的微调小部件用法示例
- 开源demo| 你画我猜——让你的生活更有趣
- sysbench压测Oracle(安装与使用示例)