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

收藏题(小试牛刀)

时间:2019-06-23 17:32:54      阅读:70      评论:0      收藏:0      [点我收藏+]

标签:highlight   python   name   func   enter   lex   strong   nbsp   ext   

收藏题

第一题:

def func(*args, **kwargs):
    print(args)
    print(kwargs)

l1 = [1, 2, 3]
d1 = {‘name‘: ‘alex‘, ‘age‘: 48}
func(l1, d1)
func(*l1,**d1)          #相当于 func(1,2,3,name=‘alex‘,age=‘48‘)

  结果:

([1, 2, 3], {‘name‘: ‘alex‘, ‘age‘: 48})
{}
(1, 2, 3)
{‘name‘: ‘alex‘, ‘age‘: 48}

  

 

收藏题(小试牛刀)

标签:highlight   python   name   func   enter   lex   strong   nbsp   ext   

原文地址:https://www.cnblogs.com/mainstream/p/11073408.html

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