I have an array that should be expanded to provide multiple arguments to a function call - like the following:
def x(a,b,c):
print "%d %d %d" %(a,b,c)
t = [1,2,3]
x(t[:]) # Will not work - this is only one value
Basically I am looking for the python equivalent to the
:_*
construct in scala