11. What is the output of the following code:
my_set = {1, 2, 3, 4, 5}
my_set.pop()
print(my_set)
my_set = {1, 2, 3, 4, 5}
my_set.pop()
print(my_set)