Python Set pop() Method Tutorial

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

What is Set pop() Method in Python?

The Python Set pop() method is used to remove an element from the beginning of the target Set object.

Note that if the Set object is empty, you’ll get an error if you call this method.

Python Set pop() Method Syntax:

set.pop()

Set pop() Method Parameter:

The method does not take an argument.

Set pop() method Return Value

The return value of this method is the first (beginning) element of the target Set object that this method was called upon.

Example: using python set pop() method

set1 = {1,2,3,4,5,6,7,8,9,10}

print(set1.pop())

print(set1)

Output:

1

{2, 3, 4, 5, 6, 7, 8, 9, 10}
Facebook
Twitter
Pinterest
LinkedIn

Top Technologies