码迷,mamicode.com
首页 > 其他好文 > 详细

动态参数

时间:2017-10-28 15:33:34      阅读:107      评论:0      收藏:0      [点我收藏+]

标签:pre   dict   type   参数   list   int   func   print   fun   

def func(*a):
print(a,type(a))
func(1,2,3,4,5,)
def func1(**a):
print(a,type(a))
func1(k=1,k2=2,k3=3,k4=4,k5=5,)
def func2(*a1,**a):
print(a1,type(a1))
print ( a , type ( a ) )
func2(1,2,3,4,5,k=1,k2=2,k3=3,k4=4,k5=5,)
def func3(q,*a1,**a):
print(q)
print(a1,type(a1))
print ( a , type ( a ) )
func3(1,2,3,4,5,k=1,k2=2,k3=3,k4=4,k5=5,)
list_1=[1,2,3,4]
dict_1={‘k1‘:123,‘k2‘:456}
def func4(*a):
print(a,type(a))
func4(list_1)
func4(*list_1)
func1(**dict_1)
func1()

动态参数

标签:pre   dict   type   参数   list   int   func   print   fun   

原文地址:http://www.cnblogs.com/chengguxian/p/7746938.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!