23

假设我有一个这样的方法定义:

def myMethod(a, b, c, d, e)

然后,我有一个变量和一个像这样的元组:

myVariable = 1
myTuple = (2, 3, 4, 5)

有没有办法我可以通过爆炸元组,以便我可以将其成员作为参数传递?像这样的东西(虽然我知道这不起作用,因为整个元组被认为是第二个参数):

myMethod(myVariable, myTuple)

如果可能的话,我想避免单独引用每个元组成员......

4

2 回答 2

43

您正在寻找参数解包运算符*

myMethod(myVariable, *myTuple)
于 2010-07-07T19:39:26.227 回答
7

Python 文档

当参数已经在列表或元组中但需要为需要单独位置参数的函数调用解包时,会发生相反的情况。例如,内置 range() 函数需要单独的开始和停止参数。如果它们不能单独使用,请使用 *-operator 编写函数调用以将参数从列表或元组中解包出来:

>>> range(3, 6)             # normal call with separate arguments
[3, 4, 5]
>>> args = [3, 6]
>>> range(*args)            # call with arguments unpacked from a list
[3, 4, 5]

以同样的方式,字典可以使用 **-operator 传递关键字参数:

>>> def parrot(voltage, state='a stiff', action='voom'):
...     print "-- This parrot wouldn't", action,
...     print "if you put", voltage, "volts through it.",
...     print "E's", state, "!"
...
>>> d = {"voltage": "four million", "state": "bleedin' demised", "action": "VOOM"}
>>> parrot(**d)
-- This parrot wouldn't VOOM if you put four million volts through it. E's bleedin' demised !
于 2010-07-07T19:46:43.693 回答