标签: python
可能重复: *args and **kwargs?
我看到了名为
def x(**xyz): print "Ok"
现在在这个函数中**xyz的含义是什么,**是什么意思?
**xyz
**
答案 0 :(得分:3)
As explained in the tutorial, keyword arguments.
当存在** name形式的最终形式参数时,它会接收一个字典(请参阅Mapping Types - dict),其中包含除了与形式参数相对应的所有关键字参数。