What is the output of the following code ?
p = {2, -1, 5} for a in p: print(a)
Error - p is not iterable
None
2 5 -1
None of the above
As p is set it will print the elements, but it can be in any order
Comment here: