Guidelines

Adding Elements to a Set

To add a new element to a set, use the add() function.

If the element you are trying to add already exists in the set, the set will not change.

Adding elements to a set
my_set = {1, 2, 3} print("my_set:", my_set) # {1, 2, 3} my_set.add(4) # Add 4 to my_set print("add 4:", my_set) # {1, 2, 3, 4} # Attempt to add a duplicate element my_set.add(2) # Attempt to add 2 to my_set print("add 2:", my_set) # {1, 2, 3, 4} (no change)
Mission
0 / 1

Use the append() method to add a new element to a Set.

O
X

Guidelines

AI Tutor

Publish

Design

Upload

Notes

Favorites

Help

Code Editor

Run
Generate

Execution Result