This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author steven.daprano
Recipients docs@python, piyushpravin1998, steven.daprano
Date 2020-08-28.14:07:37
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1598623657.41.0.186963816228.issue41656@roundup.psfhosted.org>
In-reply-to
Content
"Unordered" means that the language doesn't promise any specific order, it doesn't mean that there is no order at all.

Try strings:

py> set("abcdef")
{'b', 'f', 'c', 'e', 'd', 'a'}


or different ints:

py> set([1, 0, -2])
{0, 1, -2}
History
Date User Action Args
2020-08-28 14:07:37steven.dapranosetrecipients: + steven.daprano, docs@python, piyushpravin1998
2020-08-28 14:07:37steven.dapranosetmessageid: <1598623657.41.0.186963816228.issue41656@roundup.psfhosted.org>
2020-08-28 14:07:37steven.dapranolinkissue41656 messages
2020-08-28 14:07:37steven.dapranocreate