金刚先生 发表于 2021-10-9 16:52:18

关于打包成字典的收集参数,小白求助

>>> def test(**params):
        print(params)

>>> a = {1:2, 3:4}
>>> a
{1: 2, 3: 4}
>>> type(a)
<class 'dict'>

>>> test(**a)
Traceback (most recent call last):
File "<pyshell#46>", line 1, in <module>
    test(**a)
TypeError: keywords must be strings

1.为什么这里输入函数的参数中的key一定要str类型呀?

>>> test(a)
Traceback (most recent call last):
File "<pyshell#39>", line 1, in <module>
    test(a)
TypeError: test() takes 0 positional arguments but 1 was given

>>> test(1,2,3,4)
Traceback (most recent call last):
File "<pyshell#32>", line 1, in <module>
    test(1,2,3,4)
TypeError: test() takes 0 positional arguments but 4 were given

2.为什么我用的是字典形式的收集参数,在报错时却提示我位置参数错误,在字典中应该也不存在位置这个说法吧

冬雪雪冬 发表于 2021-10-9 17:04:41

**是将参数合并成一个字典,而不是以字典作为参数。
>>> def test(**params):
        print(params)

       
>>> test(a = 3, b = 4, c = 5)
{'a': 3, 'b': 4, 'c': 5}

逃兵 发表于 2021-10-9 17:05:40

test(a=1,b=2,c=3,d=4)

金刚先生 发表于 2021-10-9 17:07:42

冬雪雪冬 发表于 2021-10-9 17:04
**是将参数合并成一个字典,而不是以字典作为参数。

我在使用参数的时候用了**a将字典解包了呀,解包之后就应该是多个参数了才对的说

金刚先生 发表于 2021-10-9 17:08:40

逃兵 发表于 2021-10-9 17:05


这个我知道,主要是为啥将字典解包之后再进行调用它还是会报错

傻眼貓咪 发表于 2021-10-9 17:19:10

不是很明白你想问什么,以下代码希望对你有帮助:def func1(args: dict):
    print(args)

A = {1: 'one', 2: 'two'}
func1(A)

def func2(a, b, c):
    print(a, b, c)

B = {"a" : "apple", "b" : "banana", "c" : "cat"}
func2(**B)

def func3(**kwargs):
    print(kwargs)

func3(小白 = 13, 小黑 = 5, 小明 = 7){1: 'one', 2: 'two'}
apple banana cat
{'小白': 13, '小黑': 5, '小明': 7}

冬雪雪冬 发表于 2021-10-9 17:19:38

金刚先生 发表于 2021-10-9 17:07
我在使用参数的时候用了**a将字典解包了呀,解包之后就应该是多个参数了才对的说

这样就可以了。
>>> a
{'x': 1, 'y': 2}
>>> test(**a)
{'x': 1, 'y': 2}
**解包相当于x = 1, y = 2,这是符合语法的
但a = {1:2, 3:4},就变成 1= 2, 3 = 4就出错了

金刚先生 发表于 2021-10-9 18:55:06

傻眼貓咪 发表于 2021-10-9 17:19
不是很明白你想问什么,以下代码希望对你有帮助:

感谢大佬

金刚先生 发表于 2021-10-9 18:55:45

冬雪雪冬 发表于 2021-10-9 17:19
这样就可以了。

**解包相当于x = 1, y = 2,这是符合语法的


感谢大佬
页: [1]
查看完整版本: 关于打包成字典的收集参数,小白求助