标签: python
def foo(a, bar=[]): bar.append(a) print(bar) foo(1) # [1] foo(1) # [1, 1] foo(1) # [1, 1, 1]
欢迎这种行为的原因和可能的用途。感谢。