Example 1: empty set python
a = {}
print(type(a))
a = set()
print(type(a))
Example 2: python set &
>>> A = {0, 2, 4, 6, 8};
>>> B = {1, 2, 3, 4, 5};
>>> print("Union :", A | B)
Union : {0, 1, 2, 3, 4, 5, 6, 8}
>>> print("Intersection :", A & B)
Intersection : {2, 4}
>>> print("Difference :", A - B)
Difference : {0, 8, 6}
>>> print("Symmetric difference :", A ^ B)
Symmetric difference : {0, 1, 3, 5, 6, 8}
Example 3: python set
s = set()
s.add(1)
s.add(2)
s.remove(1)
print(s)
num_list = [1,2,3]
set_from_list = set(num_list)
Example 4: python set
set_example = {1, 2, 3, 4, 5, 5, 5}
print(set_example)
Example 5: set in python
A_Set = {1, 2, "hi", "test"}
for i in A_Set:
print(i)