Lists and collections / Sets
Set initialization
Search for an element
Adding and removing elements
Iterating over a set
Set comparison
Filtering elements
Sorting elements
Set operations
Converting a set
int_set = {
1
,
2
,
3
}
str_set = {
"one"
,
"two"
,
"three"
}
print
(f
'
{int_set = }
'
)
print
(f
'
{str_set = }
'
)