Suppose the following:
>>> s = set([1, 2, 3])
How do I get a value (any value) out of s without doing s.pop()>
s
s.pop()>
Yet another way in Python 3:
s.__iter__().__next__()