美文网首页
Python 将 多个长度一致的列表合成字典

Python 将 多个长度一致的列表合成字典

作者: 程序里的小仙女 | 来源:发表于2020-12-26 23:38 被阅读0次

    Python 将 多个长度一致的列表合成字典

    date=['2017-01','2017-02','2017-03','2017-04']
    c7_list=[1,2,3,4]
    c8_list=['a','b','c','d']
    c9_list=['x','y','z','w']
    new_list=[]
    new_dict=[]
    mid=map(list,zip(date,c7_list,c8_list,c9_list))
    print(mid)
    for item in mid:
        print(item)
        new_dict=dict(zip(['date','c7','c8','c9'],item))
        new_list.append(new_dict)
    print (new_list)
    

    运行结果:


    相关文章

      网友评论

          本文标题:Python 将 多个长度一致的列表合成字典

          本文链接:https://www.haomeiwen.com/subject/mamciktx.html