Python 集合 copy() 方法
Python基础 2022-06-06 16:13:07小码哥的IT人生shichen
Python 集合 copy() 方法
实例
复制 fruits 集合:
fruits = {"apple", "banana", "cherry"}
x = fruits.copy()
print(x)
完整实例:
fruits = {"apple", "banana", "cherry"}
x = fruits.copy()
print(x)
定义和用法
copy() 方法复制集合。
语法
set.copy()
参数值
无参数。