共计 282 个字符,预计需要花费 1 分钟才能阅读完成。
在 Python 中,集合(set)是一种无序且元素唯一的容器。要向集合中添加元素,可以使用 add() 方法或者使用 update() 方法。
使用 add() 方法添加单个元素:
my_set = {1, 2, 3}
my_set.add(4)
print(my_set) # 输出: {1, 2, 3, 4}
使用 update() 方法添加多个元素:
my_set = {1, 2, 3}
my_set.update([4, 5, 6])
print(my_set) # 输出: {1, 2, 3, 4, 5, 6}
可以添加的元素类型包括数字、字符串、元组等不可变类型,不能添加可变类型(如列表、字典等)。
丸趣 TV 网 – 提供最优质的资源集合!
正文完