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

Leetcode刷题--知识点查漏补缺

时间:2020-01-07 18:06:06      阅读:74      评论:0      收藏:0      [点我收藏+]

标签:lis   调用   组成   dict   字典   font   python3   size   pre   

python3-列表-字典

1.列表1作为key,列表2作为value,组成一个字典

 1 #定义两个列表
 2 list1 = ["a","b","c"]
 3 list2 = ["","绿",""]
 4      
 5 #合并为字典,调用dict(zip())
 6 dict_name = dict(zip(list1,list2))
 7 
 8 print(dict_name)
 9 
10 运行结果:
11 {"a": "", "b": "绿","c": "" }???????

 



Leetcode刷题--知识点查漏补缺

标签:lis   调用   组成   dict   字典   font   python3   size   pre   

原文地址:https://www.cnblogs.com/RuiRuia/p/12162736.html

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