>>> def hello(a=[]): a.append('hello'); return a; ... >>> hello() ['hello'] >>> hello() ['hello', 'hello']