gpt4 book ai didi

python - 在 python 字典中使用变量作为键名

转载 作者:太空宇宙 更新时间:2023-11-03 14:00:01 36 4
gpt4 key购买 nike

这感觉是多余的:

name = 'Isaiah'
myInfo = {
'name': name
}

是否有更短的、惯用的方式来做到这一点,比如在 JavaScript 中:

myInfo = { name }

编辑:将变量名从dict更改为至 myInfo , 自 dict是关键字。

最佳答案

不,没有。同样,这种语法不太可能出现,因为结构

{name}

已为set literals预留.

另一种选择是使用 dict constructor :

d = dict(name=name)

附言由于 dict 是在 builtins 模块中定义的名称,请不要将您的变量命名为 dict

关于python - 在 python 字典中使用变量作为键名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50439225/

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