What is the output of the following code ?
p = {2, -1, 5} for a in p.values(): print(a)
2
-1
5
Error
AttributeError: 'set' object has no attribute 'values'
Comment here: