默认参数陷阱可变的数据类型 (列表)------用于实际开发中不可变数据类型(字符串,数字,元组易错点:
def func(l=[]): l.append(123) print(l) func() func([]) func() # [123] # [123] # [123, 123]