gpt4 book ai didi

python - 这个 python 语法 dict(name=name) 是什么?

转载 作者:太空宇宙 更新时间:2023-11-04 10:00:20 24 4
gpt4 key购买 nike

我在 the srapy documentation 中遇到过这种语法.

>>> abc = ['a', 'b', 'c']
>>> dict(abc=abc)
{'abc': ['a', 'b', 'c']}

the python dict documentation 中好像没有提到这个语法.这个语法叫什么?

最佳答案

这个用途keyword arguments .

大致等同于:

def make_dict(**kwargs):
return kwargs

在你的情况下,

abc = ['a', 'b', 'c']
dict(abc=abc)

意思是:

dict(abc=['a', 'b', 'c'])

这与:

{'abc': ['a', 'b', 'c']}

关于python - 这个 python 语法 dict(name=name) 是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43875339/

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