Languages
[Edit]
EN

Python - clear set

0 points
Created by:
Jacob
532

In this article, we would like to show you how to clear the set in Python.

Practical example

In this example, we use clear() method to empty the set.

my_set = {'A', 'B', 'C'}

my_set.clear()

print(my_set)  # set()

Output:

set()

Alternative titles

  1. Python - empty the set
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

Python - set (popular problems)

Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join