是否按顺序评估Python字典文字?

是否按顺序评估Python字典文字?,第1张

概述参见英文答案 > Will a Python dict literal be evaluated in the order it is written?                                    3个 当我跑这个 import itertoolsbar = itertools.count(1).nextprint {'a': bar(), 'b': bar(), 参见英文答案 > Will a Python dict literal be evaluated in the order it is written?                                    3个
当我跑这个

import itertoolsbar = itertools.count(1).nextprint {'a': bar(),'b': bar(),'c': bar()}

在cpython上,我得到{‘a’:0,’b’:1,’c’:2}.这在实施中是否一致和/或在任何地方都有记录? a,b和c是否会被无序分配值?

解决方法 从 Python Docs(强调我的):

If a comma-separated sequence of key/datum pairs is given,they are evaluated from left to right to define the entrIEs of the dictionary: each key object is used as a key into the dictionary to store the corresponding datum….

因此,将始终按顺序评估对.但不要混淆元素的顺序.

总结

以上是内存溢出为你收集整理的是否按顺序评估Python字典文字?全部内容,希望文章能够帮你解决是否按顺序评估Python字典文字?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1194174.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-03
下一篇 2022-06-03

发表评论

登录后才能评论

评论列表(0条)

保存