Lawrence D'Oliveiro wrote:

Did you know that applying the “set” or “frozenset” functions to a dict return a set of its keys?

Seems a bit dodgy, somehow.

That's just a consequence of the fact that dicts produce their
keys when iterated over, and the set constructor iterates over
whatever you give it.

--
Greg
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to