user67122
0
Q:

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}

# elements not present both sets
>>> print("Symmetric difference :", A ^ B)   
Symmetric difference : {0, 1, 3, 5, 6, 8}
9
# Program to perform different set operations 
# as we do in  mathematics 
  
# sets are define 
A = {0, 2, 4, 6, 8}; 
B = {1, 2, 3, 4, 5}; 
  
# union 
print("Union :", A | B) 
  
# intersection 
print("Intersection :", A & B) 
  
# difference 
print("Difference :", A - B) 
  
# symmetric difference 
print("Symmetric difference :", A ^ B) 
3
# A set contains unique elements of which the order is not important
s = set()
s.add(1)
s.add(2)
s.remove(1)
print(s)
# Can also be created from a list (or some other data structures)
num_list = [1,2,3]
set_from_list = set(num_list)
4
set_example = {1, 2, 3, 4, 5, 5, 5}

print(set_example)

# OUTPUT
# {1, 2, 3, 4, 5} ----- Does not print repetitions
11
A_Set = {1, 2, "hi", "test"}

for i in A_Set: #Loops through the set. You only get the value not the index
  print(i) #Prints the current value
0

New to Communities?

Join the community