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

What exactly do *args and **kwargs mean?

According to the Python documentation, from what it seems, it passes in a tuple of arguments.

def foo(hello, *args):
    print hello

    for each in args:
        print each

if __name__ == '__main__':
    foo("LOVE", ["lol", "lololol"])

This prints out:

LOVE
['lol', 'lololol']

How do you effectively use them?

share|improve this question
8  
Just a bad pun on Hours and Kilo-Watt Hours. – Mostlyharmless Nov 13 '08 at 15:47
possible duplicate of What does ** and * do for python parameters? – sth Nov 6 '11 at 16:10
3  
This article can be very useful for understanding in depth the theme: agiliq.com/blog/2012/06/understanding-args-and-kwargs – Badarau Petru Dec 29 '12 at 8:04

4 Answers

up vote 105 down vote accepted

Putting *args and/or **kwargs as the last items in your function definition’s argument list allows that function to accept an arbitrary number of arguments and/or keyword arguments.

For example, if you wanted to write a function that returned the sum of all its arguments, no matter how many you supply, you could write it like this:

def my_sum(*args):
    return sum(args)

It’s probably more commonly used in object-oriented programming, when you’re overriding a function, and want to call the original function with whatever arguments the user passes in.

You don’t actually have to call them args and kwargs, that’s just a convention. It’s the * and ** that do the magic.

The official Python documentation has a more in-depth look.

share|improve this answer
4  
Thats amazing. Thank you. – UberJumper Nov 13 '08 at 14:43
1  
No sweat, you’re very welcome. Confused me for a while as well. If you’re getting into Python seriously I’d heartily recommend ‘Programming Python’ by Mark Lutz. – Paul D. Waite Nov 13 '08 at 14:48
25  
Perhaps link to the tutorial which explains this in depth, and should be read by everyone: docs.python.org/tutorial/… – Ali Afshar Nov 13 '08 at 15:02
1  
@AliAfshar: Your link was all I needed, should've been the answer by itself. Thanks! – scorpiodawg Apr 17 '12 at 6:27
2  
Bad example, it runs into this error: RuntimeError: maximum recursion depth exceeded. The problem is you are doing def sum(...): ... sum(...) and this way you are falling into infinite recursion. I will change the name of the function you defined and it will be okay. – Tadeck Aug 16 '12 at 0:33
show 4 more comments

Also, we use them for managing inheritance.

class Super( object ):
   def __init__( self, this, that ):
       self.this = this
       self.that = that

class Sub( Super ):
   def __init__( self, myStuff, *args, **kw ):
       super( Sub, self ).__init__( *args, **kw )
       self.myStuff= myStuff

x= Super( 2.7, 3.1 )
y= Sub( "green", 7, 6 )

This way Sub doesn't really know (or care) what the superclass initialization is. Should you realize that you need to change the superclass, you can fix things without having to sweat the details in each subclass.

share|improve this answer
1  
This is one of the most helpful answers I have found on how to use super. This answer is more than 5 years old, but I guess this is still a great way of using super in Python 2.X, correct? – user815423426 Apr 4 at 17:09

Notice the cool thing in S.Lott's comment - you can also call functions with *mylist and **mydict to unpack positional and keyword arguments:

def foo(a, b, c, d):
  print a, b, c, d

l = [0, 1]
d = {"d":3, "c":2}

foo(*l, **d)

Will print: 0 1 2 3

share|improve this answer
1  
this is very cool – Yarin Jan 21 '12 at 16:03
You can actually do also *mydict (not **mylist), but the result will be slightly different (and unexpected to some). – Tadeck Aug 16 '12 at 0:36
simple, concise, and an easy to follow example to illustrate the point. My favorite kind of answer! – NickO Mar 27 at 16:48

Another good use for *args and **kwargs: you can define generic "catch all" functions, which is great for decorators where you return such a wrapper instead of the original function.

An example with a trivial caching decorator:

import pickle, functools
def cache(f):
  _cache = {}
  def wrapper(*args, **kwargs):
    key = pickle.dumps((args, kwargs))
    if key not in _cache:
      _cache[key] = f(*args, **kwargs) # call the wrapped function, save in cache
    return _cache[key] # read value from cache
  functools.update_wrapper(wrapper, f) # update wrapper's metadata
  return wrapper

import time
@cache
def foo(n):
  time.sleep(2)
  return n*2

foo(10) # first call with parameter 10, sleeps
foo(10) # returns immediately
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.