Python的集合(set)和其他语言类似, 是一个无序不重复元素集, 基本功能包括关系测试和消除重复元素. 集合对象还支持union(联合), intersection(交), difference(差)和sysmmetric difference(对称差集)等数学运算。本文主要介绍Python 集合(set) copy() 方法。

Python 集合方法

例如:

copyfruits集:

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

x = fruits.copy()

print(x)

1、定义和用法

copy()方法复制该集合。

2、调用语法

set.copy()

3、参数说明

没有参数

Python 集合方法

推荐文档