移除集合中的所有元素。
set.clear()
def test(): arr={"a","b","c"} print(arr) # 清空集合内所有的值 arr.clear() print(arr) # 输出:set()