EN
Python - add set items
0 points
In this article, we would like to show you how to add set items in Python.
Quick solution:
xxxxxxxxxx
1
my_set.add('new item')
In this example, we use add()
method to add an item to the set.
xxxxxxxxxx
1
my_set = {'A', 'B', 'C'}
2
3
my_set.add('D')
4
5
print(my_set) # {'C', 'B', 'A', 'D'}
Output:
xxxxxxxxxx
1
{'C', 'B', 'A', 'D'}