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

【369】列表/字典的分拆, unpacking

时间:2019-02-06 13:18:50      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:spl   ISE   unp   bsp   参数   自动   dem   his   ack   

参考: python--参数列表的分拆 

当你要传递的参数已经是一个列表,调用的函数却接受分开一个个的参数,这个时候可以考虑参数列表拆分:

  • 可以使用* 操作符来自动把参数列表拆开:
args=[3,6]
x=list(range(*args))
print(x)
 
-------------------输出-----------------------------
 
[3, 4, 5]
  • 可以使用 ** 操作符分拆关键字参数为字典:
def parrot(voltage,state=‘a stiff‘,action=‘voom‘):
    print("-- This parrot wouldn‘t ",action)
    print("if you put ",voltage,"volts through it.")
    print("E‘s",state,"!")
 
d={"voltage":"four million", "state":"bleedin demised","action":"voom"}
 
parrot(**d)
 
-------------------输出-----------------------------
 
-- This parrot wouldn‘t  voom if you put  four million volts through it. E‘s bleedin demised !

 

 

【369】列表/字典的分拆, unpacking

标签:spl   ISE   unp   bsp   参数   自动   dem   his   ack   

原文地址:https://www.cnblogs.com/alex-bn-lee/p/10353590.html

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