gpt4 book ai didi

python - python 字典中的键值一致性

转载 作者:太空狗 更新时间:2023-10-30 00:41:43 24 4
gpt4 key购买 nike

这可能是一个菜鸟问题。对于 python 中的任何字典“d”,这总是 True:

dict( zip( d.keys(), d.values() ) ) == d 

键和值是否以相同的对应顺序返回?

最佳答案

是的,它总是正确的。由 Python 保证,前提是没有对词典的干预修改。

相关规范:http://docs.python.org/library/stdtypes.html#dict.items

这通常更好,因为它可以防止 dict 不同步并且使用可以忽略不计的额外内存:

dict((k,v) for k,v in d.iteritems())

关于python - python 字典中的键值一致性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8363938/

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