gpt4 book ai didi

python - 还有其他方法可以使用 python 设置 dict 值吗?

转载 作者:行者123 更新时间:2023-11-30 23:54:04 26 4
gpt4 key购买 nike

这是我的代码:

a={}
a['b']=0
print a['b']

这是我的其他代码(这是错误的):

a={}
a.b=0
print a.b

还有其他方法可以设置与 python dict 中的键关联的值吗?

最佳答案

a = {'b':0}

a = dict([('b',0)])

a = dict.fromkeys(['b'], 0)

a = {}
b = {'b':0}
a.update(b)

a = {}
a.__setitem__('b',0)

关于python - 还有其他方法可以使用 python 设置 dict 值吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5320174/

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