Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In a similar way to using varargs in C or C++:

fn(a, b)
fn(a, b, c, d, ...)
share|improve this question
5  
I refer the honorable lottness to podcast 53: itc.conversationsnetwork.org/shows/… – David Sykes May 28 '09 at 11:10
I gotta go with Mr Lott on this one. You can quickly get an authorative answer on this one in the Python docs, plus you'll get a feel for what else is there in the docs. It is to your benefit to get to know those docs if you plan on working in Python. – Brian Neal May 28 '09 at 19:41
1  
The quickest answer is what Google says is the quickest answer. – Evgeni Sergeev Apr 2 at 7:13

4 Answers

up vote 62 down vote accepted

Yes.

This is simple and works if you disregard keyword arguments:

def manyArgs(*arg):
  print "I was called with", len(arg), "arguments:", arg

>>> manyArgs(1)
I was called with 1 arguments: (1,)
>>> manyArgs(1, 2,3)
I was called with 3 arguments: (1, 2, 3)

As you can see, Python will give you a single tuple with all the arguments.

For keyword arguments you need to accept those as a separate actual argument, as shown in Skurmedel's answer.

share|improve this answer
8  
docs.python.org/tutorial/… – Miles May 28 '09 at 8:06
3  
Also important...one may find a time when they have to pass an unknown number of arguments to a function. In a case like this call your "manyArgs" by creating a list called "args" and passing that to manyArgs like this "manyArgs(*args)" – wilbbe01 Feb 16 '11 at 6:02
This is close, but this is unfortunately not general enough: manyArgs(x = 3) fails with TypeError. Skumedel's answer shows the solution to this. The key point is that the general signature of a function is f(*list_args, **keyword_args) (not f(*list_args)). – EOL Mar 15 at 3:36

Adding to unwinds post:

You can send multiple key-value args too.

def myfunc(**kwargs):
    # kwargs is a dictionary.
    for k,v in kwargs.iteritems():
         print "%s = %s" % (k, v)

myfunc(abc=123, def=456)
# abc = 123
# def = 456

And you can mix the two:

def myfunc2(*args, **kwargs):
   for a in args:
       print a
   for k,v in kwargs.iteritems():
       print "%s = %s" % (k, v)

myfunc2(1, 2, 3, banan=123)
# 1
# 2
# 3
# banan = 123

They must be both declared and called in that order, that is the function signature needs to be *args, **kwargs, and called in that order.

share|improve this answer

Adding to the other excellent posts.

Sometimes you don't want to specify the number of arguments and want to use keys for them (the compiler will complain if one argument passed in a dictionary is not used in the method).

def manyArgs1(args):
  print args.a, args.b #note args.c is not used here

def manyArgs2(args):
  print args.c #note args.b and .c are not used here

class Args: pass

args = Args()
args.a = 1
args.b = 2
args.c = 3

manyArgs1(args) #outputs 1 2
manyArgs2(args) #outputs 3

Then you can do things like

myfuns = [manyArgs1, manyArgs2]
for fun in myfuns:
  fun(args)
share|improve this answer

Pass an array..

share|improve this answer
1  
Not having used Python much, this was my initial idea. Why has this answer been marked down? – CiscoIPPhone May 28 '09 at 8:38
I didn't mark it down, but I would guess it is because it is simply not the answer, and the actual answer is no more complicated than passing an array – David Sykes May 28 '09 at 8:49
10  
An array isn't even a basic Python type. (Though you can import such a thing from the standard library.) If the answer had been 'pass a list' however that would have been less wrong, but still more work than the canonical way given in the accepted answer above. – Kylotan May 29 '09 at 11:27

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.