python 列表与字典转换

Posted crazyaugustmoon

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 列表与字典转换相关的知识,希望对你有一定的参考价值。

一、列表转字典:

  方法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 列表与字典转换的主要内容,如果未能解决你的问题,请参考以下文章

python 字典列表字符串 之间的转换

python3 下列表与字典转换

Python 字符串/列表/元组/字典之间的相互转换

Python - 列表与字典相互转换

python学习列表字符串字典集合文件操作字符串编码与转换

python 字典列表字符串 之间的转换