Python Set copy() Method Tutorial

In this section, we will learn what the Set copy() method is and how to use it in Python.

What is Set copy() Method in Python?

The Set copy() method is used to coy the content of a Set object and return a new Set that contains these copied elements as a result.

Python Set copy() Method Syntax:

set.copy()

Set copy() Method Parameter:

The method does not take an argument.

Set copy() method Return Value

The return value of this method is a reference to a new Set object.

Example: using python set copy() method

set1 = {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15}

copySet = set1.copy()

print(copySet)

Output:

{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15}
Facebook
Twitter
Pinterest
LinkedIn

Top Technologies