Python中的**kwargs有什么用途?
我知道你可以在表上执行objects.filter并传递一个**kwargs参数。
我也可以这样做来指定时间增量,即时间增量(小时=时间1)吗?
它到底是如何工作的?是否归类为“开箱”?比如a,b=1,2?
Python中的**kwargs有什么用途?
我知道你可以在表上执行objects.filter并传递一个**kwargs参数。
我也可以这样做来指定时间增量,即时间增量(小时=时间1)吗?
它到底是如何工作的?是否归类为“开箱”?比如a,b=1,2?
当前回答
kwargs只是一个添加到参数中的字典。
字典可以包含键、值对。这就是夸格夫妇。好的,就是这样。
做什么并不是那么简单。
例如(非常假设),您有一个接口,它只调用其他例程来完成任务:
def myDo(what, where, why):
if what == 'swim':
doSwim(where, why)
elif what == 'walk':
doWalk(where, why)
...
现在你得到了一个新的方法“驱动”:
elif what == 'drive':
doDrive(where, why, vehicle)
但是等一下,有一个新的参数“车辆”——你以前不知道。现在必须将其添加到myDo函数的签名中。
在这里,您可以将夸rgs放入游戏中——只需将夸rg斯添加到签名中即可:
def myDo(what, where, why, **kwargs):
if what == 'drive':
doDrive(where, why, **kwargs)
elif what == 'swim':
doSwim(where, why, **kwargs)
这样,您就不需要在每次调用的某些例程发生更改时更改接口函数的签名。
这只是一个很好的例子,你会发现夸尔格很有用。
其他回答
kwargs只是一个添加到参数中的字典。
字典可以包含键、值对。这就是夸格夫妇。好的,就是这样。
做什么并不是那么简单。
例如(非常假设),您有一个接口,它只调用其他例程来完成任务:
def myDo(what, where, why):
if what == 'swim':
doSwim(where, why)
elif what == 'walk':
doWalk(where, why)
...
现在你得到了一个新的方法“驱动”:
elif what == 'drive':
doDrive(where, why, vehicle)
但是等一下,有一个新的参数“车辆”——你以前不知道。现在必须将其添加到myDo函数的签名中。
在这里,您可以将夸rgs放入游戏中——只需将夸rg斯添加到签名中即可:
def myDo(what, where, why, **kwargs):
if what == 'drive':
doDrive(where, why, **kwargs)
elif what == 'swim':
doSwim(where, why, **kwargs)
这样,您就不需要在每次调用的某些例程发生更改时更改接口函数的签名。
这只是一个很好的例子,你会发现夸尔格很有用。
您可以使用**kwargs让函数接受任意数量的关键字参数(“kwargs”表示“关键字参数”):
>>> def print_keyword_args(**kwargs):
... # kwargs is a dict of the keyword args passed to the function
... for key, value in kwargs.iteritems():
... print "%s = %s" % (key, value)
...
>>> print_keyword_args(first_name="John", last_name="Doe")
first_name = John
last_name = Doe
通过构造关键字参数字典并将其传递给函数,也可以在调用函数时使用**kwargs语法:
>>> kwargs = {'first_name': 'Bobby', 'last_name': 'Smith'}
>>> print_keyword_args(**kwargs)
first_name = Bobby
last_name = Smith
Python教程包含了它如何工作的很好的解释,以及一些很好的示例。
Python 3更新
对于Python 3,使用items()代替itertimes()
正在解压缩词典
**拆开词典。
This
func(a=1, b=2, c=3)
与
args = {'a': 1, 'b': 2, 'c':3}
func(**args)
如果您必须构造参数,这很有用:
args = {'name': person.name}
if hasattr(person, "address"):
args["address"] = person.address
func(**args) # either expanded to func(name=person.name) or
# func(name=person.name, address=person.address)
函数的包装参数
对python 3使用.items()而不是.iteritems()
def setstyle(**styles):
for key, value in styles.iteritems(): # styles is a regular dictionary
setattr(someobject, key, value)
这使您可以像这样使用函数:
setstyle(color="red", bold=False)
笔记
kwargs是用于关键字参数的变量名,可以使用另一个变量名。重要的一点是它是一本字典,并且用双星号运算符**进行了解包。其他可迭代项使用单个星号运算符解包*为了避免混淆,最好分别使用字典和其他可迭代变量的可识别变量名kwargs和args。
资源
PEP 448:其他解包概括真实Python:Python args和kwargs:解密在函数签名中,变量名前的*和**意味着什么?
在Java中,使用构造函数重载类并允许多个输入参数。在python中,可以使用kwargs来提供类似的行为。
java示例:https://beginnersbook.com/2013/05/constructor-overloading/
python示例:
class Robot():
# name is an arg and color is a kwarg
def __init__(self,name, color='red'):
self.name = name
self.color = color
red_robot = Robot('Bob')
blue_robot = Robot('Bob', color='blue')
print("I am a {color} robot named {name}.".format(color=red_robot.color, name=red_robot.name))
print("I am a {color} robot named {name}.".format(color=blue_robot.color, name=blue_robot.name))
>>> I am a red robot named Bob.
>>> I am a blue robot named Bob.
只是另一种思考方式。
kwargs是一种语法糖,可以将名称参数作为字典传递(对于func),或将字典作为命名参数传递(对于func)