function with list argument defaulting to [] - what's going on here???

Mike mmoum at woh.rr.com
Sat Apr 14 21:23:16 EDT 2007


While trying to write a recursive function involving lists, I came 
across some (to me) odd behavior which I don't quite understand. Here's 
a trivial function showing the problem.

 >>> def f(l, r = []):
	for itm in l:
		r.append(itm)
	print r

	
 >>> a = [1,2,3]
 >>> f(a)
[1, 2, 3]
 >>> f(a)
[1, 2, 3, 1, 2, 3]
 >>> f(a)
[1, 2, 3, 1, 2, 3, 1, 2, 3]

I know the function is quite artificial, but it's for illustration only. 
Why is "r" not being reset to the empty list on subsequent calls? It 
seems like it should be reinitialized when not explicitly provided.

Thanks in advance.
Mike



More information about the Python-list mailing list