def PrintList(L=[]):
L.append("hello")
print L
PrintList()
PrintList()
PrintList()
===== 测试结果 =====
>>> python test.py
['hello']
['hello', 'hello']
['hello', 'hello', 'hello']
===== 参考 =====
* http://www.scriptlearn.com/archives/604