📅  最后修改于: 2020-07-16 05:21:41             🧑  作者: Mango
clear()方法从集合中删除所有元素。
句法:
set.clear()
参数: clear()方法不使用任何参数。 返回值: clear()方法不返回任何值。
例子:
# 字母集合
GEEK = {'g', 'e', 'e', 'k', 's'}
print('GEEK 清除之前:', GEEK)
# 清除元音
GEEK.clear()
print('GEEK 清除后:', GEEK)
应用:用于清除设置。
# 字母集合
GEEK = {6, 0, 4, 1}
print('GEEK 清除之前:', GEEK)
# 清除元音
GEEK.clear()
print('GEEK 清除后:', GEEK)
输出:
GEEK 清除之前: set([0, 1, 4, 6])
GEEK 清除后: set([])