53.
What is the purpose of the copy() method for sets?

56.
If we have two sets, s1 and s2, and we want to check if all the elements of s1 are present in s2 or not, we can use the function:

57.
What will be the output of the following Python function?
{x for x in 'abc'}
{x*3 for x in 'abc'}