当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python Set copy()用法及代码示例


设置 copy() 方法

copy() 方法用于复制集合,它返回一个包含该集合所有元素的集合。

用法:

    set_name.copy()

参数:

  • 它不接受任何参数。

返回值:

这个方法的返回类型是<class 'set'>,它返回一个包含这个集合的副本的集合。

例:

# Python Set copy() Method with Example

# declaring a set
cities = {"New Delhi", "Mumbai", "Indore", "Gwalior"}

# creating another set by using 
# copy() method
x = cities.copy()

# printing both sets
print("cities:", cities)
print("x:", x)

输出

cities: {'New Delhi', 'Mumbai', 'Indore', 'Gwalior'}
x: {'New Delhi', 'Mumbai', 'Indore', 'Gwalior'}


相关用法


注:本文由纯净天空筛选整理自 Python Set copy() Method with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。