今天来讲一下python函数的默认参数问题:
def arg(*arg, **arg):
print(*arg, **arg)
arg(11, 22, 33, 'name' = 'alice', 'addr' = '51st street')