赞
踩
def fun ( *args):
print(args)
fun (10)
fun(10,30)
fun(30,405,50)
(10,)
(10, 30)
(30, 405, 50)
def fun1( **args):
print(args)
fun1(a=10)
fun1 (a=20, b=30, c=40)
{'a': 10}
{'a': 20, 'b': 30, 'c': 40}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。