设置 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 clear()用法及代码示例
- Python Set issuperset()用法及代码示例
- Python Set difference_update()用法及代码示例
- Python Set union()用法及代码示例
- Python Set pop()用法及代码示例
- Python Set add()用法及代码示例
- Python Set issubset()用法及代码示例
- Python Set update()用法及代码示例
- Python Set isdisjoint()用法及代码示例
- Python Set intersection_update()用法及代码示例
- Python Set symmetric_difference()用法及代码示例
- Python Set symmetric_difference_update()用法及代码示例
- Python Set discard()用法及代码示例
- Python Set intersection()用法及代码示例
- Python Set difference()用法及代码示例
- Python Set remove()用法及代码示例
- Python Pandas Series.cummin()用法及代码示例
- Python Pandas Series.cov()用法及代码示例
- Python Pandas Series.astype()用法及代码示例
- Python Pandas Series.mad()用法及代码示例
注:本文由纯净天空筛选整理自 Python Set copy() Method with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。