Python arguments as a dictionary

前端 未结 2 1223
囚心锁ツ
囚心锁ツ 2020-12-28 12:11

How can I get argument names and their values passed to a method as a dictionary?

I want to specify the optional and required parameters for a GET request as part of

2条回答
  •  时光说笑
    2020-12-28 12:48

    Use a single argument prefixed with **.

    >>> def foo(**args):
    ...     print(args)
    ...
    >>> foo(a=1, b=2)
    {'a': 1, 'b': 2}
    

提交回复
热议问题