vote up 4 vote down star
1

Sometimes it seems natural to have a default parameter which is an empty list. Yet Python gives unexpected behavior in these situations.

If for example, I have a function:

def myFunc(working_list = []):
    working_list.append("a")
    print working_list

The first time it is called with the default will work, but calls after that will use a constantly updating list.

So, what is the pythonic way to get the behavior I desire (a fresh list on each call)?

flag

3 Answers

vote up 23 vote down check
def myFunc(working_list=None):
    if working_list is None: 
        working_list = []
    working_list.append("a")
    print working_list

is how I do it.

link|flag
Is it better to say: if working_list == None: or if working_list: ?? – John Mulder Dec 14 '08 at 11:31
if not working_list: – Mohit Ranka Dec 14 '08 at 11:32
This is the preferred way to do it in python, even if I don't like it since it's ugly. I'd say the best practice would be "if working_list is None". – e-satis Dec 14 '08 at 12:35
2  
The preferred way in this example is to say: if working_list is None . The caller might have used an empty list-like object with a custom append. – ΤΖΩΤΖΙΟΥ Dec 14 '08 at 12:45
Modified according to PEP8 python.org/dev/peps/pep-0008 – J.F. Sebastian Dec 14 '08 at 12:48
show 1 more comment
vote up 3 vote down

Not that it matters in this case, but you can use object identity to test for None:

if working_list is None: working_list = []

You could also take advantage of how the boolean operator or is defined in python:

working_list = working_list or []

Though this will behave unexpectedly if the caller gives you an empty list (which counts as false) as working_list and expects your function to modify the list he gave it.

link|flag
vote up 0 vote down

I might be off-topic, but remember that if you just want to pass a variable number of arguments, the pythonic way is to pass a tuple *args or a dictionary **kargs. These are optional and are better than the syntax myFunc([1, 2, 3]).

If you want to pass a tuple:

def myFunc(arg1, *args):
  print args
  w = []
  w += args
  print w
>>>myFunc(1, 2, 3, 4, 5, 6, 7)
(2, 3, 4, 5, 6, 7)
[2, 3, 4, 5, 6, 7]

If you want to pass a dictionary:

def myFunc(arg1, **kargs):
   print kargs
>>>myFunc(1, option1=2, option2=3)
{'option2' : 2, 'option1' : 3}
link|flag

Your Answer

Get an OpenID
or

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