Removes and returns an arbitrary element from the set.
set. pop()
The same as deleted by calling this method.
#TODO
Raises KeyError if the set is empty.
>>> s = {1, 2}
>>> s.pop()
1
>>> s
set([2])
>>> s.pop()
2
>>> s.pop()
KeyError: 'pop from an empty set'#TODO