🌈 搜索
📅  最后修改于: 2022-03-11 14:45:26.467000             🧑  作者: Mango
def foo(*args): for a in args: print(a) foo(1) # 1 foo(1,2,3) # 1 # 2 # 3