vote up 3 vote down star
1

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

fn(a, b)
fn(a, b, c, d, ...)
flag

Was the Python documentation web site down? – S.Lott May 28 at 10:11
3  
I refer the honorable lottness to podcast 53: itc.conversationsnetwork.org/shows/… – David Sykes May 28 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 at 19:41

3 Answers

vote up 16 vote down check

Yes.

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.

link|flag
4  
docs.python.org/tutorial/… – Miles May 28 at 8:06
vote up 11 vote down

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.

link|flag
vote up -2 vote down

Pass an array..

link|flag
Not having used Python much, this was my initial idea. Why has this answer been marked down? – CiscoIPPhone May 28 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 at 8:49
1  
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 at 11:27

Your Answer

Get an OpenID
or

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