gpt4 book ai didi

python - 在 python 函数中定义的 locals() 不起作用

转载 作者:行者123 更新时间:2023-12-05 07:03:00 26 4
gpt4 key购买 nike

<分区>

考虑下面的代码:-

dct = {'one':[2,3]}

现在下面的工作,

for key,val in dct.items():
locals()[key] = val
print(one)

Result:
[2, 3]

但是当我使用我真正想要的功能时,它不起作用。请帮忙

def ff(dct):
for key,val in dct.items():
locals()[key] = val
print(one)
ff(dct)

Result:
NameError: name 'one' is not defined

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