标签:style blog http color html for
#-*-coding:utf-8 def ttt(value1,*args): for i in args: value1+=i print(value1) def tt2(**args): iSum=args[‘a‘]+args[‘b‘] print iSum ttt(10,1,2,3,4) tt2(a=3,b=4)
输出:
20
7
Python Special Syntax 10:列表综合,不定数参数传递(C#的params关键字),布布扣,bubuko.com
Python Special Syntax 10:列表综合,不定数参数传递(C#的params关键字)
标签:style blog http color html for
原文地址:http://www.cnblogs.com/yanyuge/p/3822874.html