Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: *args 和 **kwargs?
我看到函数叫做
def x(**xyz): print "Ok"
**xyz现在在这个函数中, ie的含义**是什么?
**xyz
**
如教程中所述,关键字参数。
当存在 **name 形式的最终形式参数时,它会接收一个字典(请参阅映射类型 - dict),其中包含除了与形式参数相对应的关键字参数之外的所有关键字参数。