设置 clear() 方法
clear() 方法用于清除/删除集合中的所有元素。
用法:
set_name.clear()
参数:
- 它不接受任何参数。
返回值:
这个方法的返回类型是None
。
例:
# Python Set clear() Method with Example
# declaring a set
cities = {"New Delhi", "Mumbai", "Indore", "Gwalior"}
# printing set before clearing the element
print("cities = ", cities)
# clearing all elements
cities.clear()
# printing set after clearing the element
print("cities = ", cities)
输出
cities = {'Indore', 'Gwalior', 'New Delhi', 'Mumbai'} cities = set()
相关用法
- Python Set copy()用法及代码示例
- Python Set issuperset()用法及代码示例
- Python Set difference_update()用法及代码示例
- Python Set union()用法及代码示例
- Python Set pop()用法及代码示例
- Python Set add()用法及代码示例
- Python Set issubset()用法及代码示例
- Python Set update()用法及代码示例
- Python Set isdisjoint()用法及代码示例
- Python Set intersection_update()用法及代码示例
- Python Set symmetric_difference()用法及代码示例
- Python Set symmetric_difference_update()用法及代码示例
- Python Set discard()用法及代码示例
- Python Set intersection()用法及代码示例
- Python Set difference()用法及代码示例
- Python Set remove()用法及代码示例
- Python Pandas Series.cummin()用法及代码示例
- Python Pandas Series.cov()用法及代码示例
- Python Pandas Series.astype()用法及代码示例
- Python Pandas Series.mad()用法及代码示例
注:本文由纯净天空筛选整理自 Python Set clear() Method with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。