Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Ok, stupid python question: Is there syntax that allows you to expand a list into the arguments of a function call?

Example:

# trivial example function, not meant to do anything useful.
def foo(x,y,z):
   return "%d, %d, %d" %(x,y,z)

# List of values that I want to pass into foo
values = [1,2,3]

#I want to do something like this, and get the result "1, 2, 3":
foo( values.howDoYouExpandMe() )
share|improve this question
Why don't you give a tuple to the function? – lc2817 Oct 12 '11 at 20:16
@lc2817 I'm working with a library function that I cannot change and the data passed in as arguments is already in an array. – Brian McFarland Oct 12 '11 at 20:23
Ok, thank you for your question it was usefull! – lc2817 Oct 12 '11 at 20:50

4 Answers

up vote 23 down vote accepted

It exists, but it's hard to search for. I think most people call it the "splat" operator.

It's in the documentation as "Unpacking argument lists".

You'd use it like this: foo(*values). There's also one for dictionaries:

d = {'a': 1, 'b', 2}
def foo(a, b):
    pass
foo(**d)
share|improve this answer
What was the downvote for? – Daenyth Oct 13 '11 at 14:28
No idea. Must have hit it by mistake. Sorry. I can't remove it now unless the answer is edited, if you want to do that I'll try again to remove it. – c-urchin Oct 25 '11 at 21:46
@c-urchin it's edited, i think... you can try again – max Aug 15 '12 at 8:26
downvote removed! – c-urchin Aug 16 '12 at 14:05

You should use the * operator, like foo(*values) Read this python documentation.

Also, do read this: http://www.saltycrane.com/blog/2008/01/how-to-use-args-and-kwargs-in-python/

def foo(x,y,z):
   return "%d, %d, %d" %(x,y,z)

values = [1,2,3]

# the solution.
foo(*values)
share|improve this answer

Try the following:

foo(*values)

This can be found in the Python docs as Unpacking Argument Lists.

share|improve this answer

That can be done with:

foo(*values)
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.