81. What will be the output of the following Python code?
>>> a={4,5,6}
>>> b={2,8,6}
>>> a-b
>>> a={4,5,6}
>>> b={2,8,6}
>>> a-b
>>> a={4,5,6}
>>> b={2,8,6}
>>> a-b
for x in set('pqr'):
print(x*2)
s={2, 5, 6, 6, 7}
s
nums = set([1,1,2,3,3,3,4,4])
print(len(nums))
a={1,2,3}
b={1,2,3,4}
c=a.issuperset(b)
print(c)
>>> a={3,4,5}
>>> b={5,6,7}
>>> a|b