小码哥的IT人生

Python 集合 add() 方法

Python基础 2022-06-06 16:12:59小码哥的IT人生shichen

Python 集合 add() 方法

实例

向 fruits 集合添加一个元素:

fruits = {"apple", "banana", "cherry"}
fruits.add("orange")
print(fruits)

完整实例:

thisset = {"apple", "banana", "cherry"}
thisset.add("orange")
print(thisset)

定义和用法

add() 方法向集合添加元素。

如果该元素已存在,则 add() 方法就不会添加元素。

语法

set.add(element)

参数值

参数 描述
element 必需。要添加到集合的元素。

更多实例

示例代码:

请尝试添加已存在的元素:

fruits = {"apple", "banana", "cherry"}
fruits.add("apple")
print(fruits)

完整实例:

thisset = {"apple", "banana", "cherry"}
thisset.add("apple")
print(thisset)

版权所有 © 小码哥的IT人生
Copyright © phpcodeweb All Rights Reserved
ICP备案号:苏ICP备17019232号-2  

苏公网安备 32030202000762号

© 2021-2024