码迷,mamicode.com
首页 > 编程语言 > 详细

python 列表与字典转换

时间:2018-12-28 12:03:02      阅读:278      评论:0      收藏:0      [点我收藏+]

标签:abc   字典   zip   转换   python   列表   new   bsp   pytho   

一、列表转字典:

  方法1:

    list_1 = [‘abc‘, ‘efg‘]

    list_2 = [123, 456]

    new_dict = dict(zip(list_1, list_2))

 

  方法2:

    list_1 = [‘a‘, 1]

    list_2 = [‘b‘, 2]

    list_3 = [list_1, list_2]

    new_dict = dict(list_3)

二、字典转列表:

  dict_1 = {‘a‘, 1}

  list_keys = list(dict_1)

  list_values = list(dict_1.values)

 

python 列表与字典转换

标签:abc   字典   zip   转换   python   列表   new   bsp   pytho   

原文地址:https://www.cnblogs.com/crazyaugustmoon/p/10189681.html

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