Python 集合 copy() 方法

实例

复制 fruits 集合:

fruits = {"apple", "banana", "cherry"}

x = fruits.copy()

print(x)

运行实例

定义和用法

copy() 方法复制集合。

语法

set.copy()

参数值

无参数。