Python Set copy()方法
Python 3 教程
· 2019-02-06 18:26:26
描述
copy() 方法用于拷贝一个集合。
语法
copy() 方法语法:
set.copy()
参数
- 无。
返回值
无。
实例
拷贝 fruits 集合:
实例 1
fruits = {"apple", "banana", "cherry"}
x = fruits.copy()
print(x)
输出结果为:
{'cherry', 'banana', 'apple'}
点击查看所有 Python 3 教程 文章: https://www.codercto.com/courses/l/10.html