Given the following sets, predict the outputs and then check them in your shell. (Hint: Remember which is independent of the order, that is, when it matters that a_set is first versus b_set being first.)
a_set="the", "coat", "had", "many", "colors", "red", "blue", "yellow"
b_set="my", "coat", "had", "two", "main", "colors", "red", "blue"
x= a_set.intersection(b_set)
y= b_set.intersection(a_set)
print(x)
print(y)
w= a_set.union(b_set)
v= a_set.union(a_set)
print(w)
print(v)
t= a_set.difference(b_set)
u= b_set.difference(a_set)
print(t)
print(u)
r= a_set.symmetric_difference(b_set)
s= b_set.symmetric_difference(a_set)
print(r)
print(s)