0

我很困惑一个 * 和两个 ** 在参数前面的作用。

def wrapper(*args, **wdargs):
4

2 回答 2

0

这意味着关键字参数。

例如。

func(x, y, foo='a') # where foo is a keyword argument
于 2013-03-21T08:04:54.793 回答
0

它们用于接受可变数量的争论。看看这个:http: //www.saltycrane.com/blog/2008/01/how-to-use-args-and-kwargs-in-python/

于 2013-03-21T08:06:00.567 回答