21. What will be the output of the following Python code?
>>> s={5,6}
>>> s*3
>>> s={5,6}
>>> s*3
>>> s={5,6}
>>> s*3
s={4>3, 0, 3-3}
all(s)
any(s)
z=set('abc')
z.add('xyz')
z.update(set(['p', 'q']))
z
>>> a={5,6,7}
>>> sum(a,5)
x=set('abcde')
y=set('xyzbd')
x.difference_update(y)
x
y
>>> a={1,2,3}
>>> b=frozenset([3,4,5])
>>> a-b
>>> a={1,2,3}
>>> a.intersection_update({2,3,4,5})
>>> a
l=[1, 2, 4, 5, 2, 'xy', 4]
set(l)
l