Python/ref set copy

来自菜鸟教程
跳转至:导航、​搜索

<languages />

Python Set copy()方法

❮设定方法

复制 fruits set:

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

x = fruits.copy()

print(x)

定义和用法

The copy() 方法复制集。

句法

set.copy()
  

参数值

没有参数

❮设定方法