当我跑这个
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字典文字?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)