gpt4 book ai didi

python-3.6 打印集表达式不按顺序

转载 作者:太空宇宙 更新时间:2023-11-04 05:06:36 24 4
gpt4 key购买 nike

有一个关于Python3.6的问题。这是关于 Set 表达式的输出。我不知道为什么下面的代码没有按顺序出现:

a = {i*2 for i in range(1, 5)}
print(a)

我期望 {2, 4, 6, 8} 但输出是 {8, 2, 4, 6}

为什么顺序不对?

最佳答案

如果你看一下文档; set documentation的第一句是:

A set object is an unordered collection of distinct hashable objects.

因此集合中元素的顺序出于所有实际目的随机。即使在 python-3.6 中也是如此。

关于python-3.6 打印集表达式不按顺序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44299475/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com