Python 集合方法
复制 fruits 集合:
fruits = {"apple", "banana", "cherry"} x = fruits.copy() print(x)
运行实例
copy() 方法复制集合。
set.copy()
无参数。