将Python字典转换为kwargs?

我想使用类继承来构建对sunburnt(solr接口)的查询,并因此将键 - 值对添加到一起。 sunburnt接口采用关键字参数。 如何将字典({'type':'Event'})转换为关键字参数(type='Event')


使用双星(又名双啪?)运算符:

func(**{'type':'Event'})

相当于

func(type='Event')
链接地址: http://www.djcxy.com/p/18173.html

上一篇: Converting Python dict to kwargs?

下一篇: Proper way to use **kwargs in Python