Python Set copy()方法

Python3 列表 Python 集合


描述

copy() 方法用于拷贝一个集合。

语法

copy() 方法语法:

set.copy()

参数

  • 无。

返回值

无。

实例

拷贝 fruits 集合:

实例 1

fruits = {"apple", "banana", "cherry"} x = fruits.copy() print(x)

输出结果为:

{'cherry', 'banana', 'apple'}

Python3 列表 Python 集合