例如:
将元素添加到fruits
集中:
fruits = {"apple", "banana", "cherry"}
fruits.add("orange")
print(fruits)
1、定义和用法
add()
方法将元素添加到集合中。
如果该元素已经存在,则add()
方法不会添加该元素。
2、调用语法
set.add(elmnt)
3、参数说明
参数 | 描述 |
elmnt | 必需的参数,要添加到集合中的元素 |
4、使用示例
例如:
尝试添加一个已经存在的元素:
fruits = {"apple", "banana", "cherry"}
fruits.add("apple")
print(fruits)