美文网首页python
python list和字典

python list和字典

作者: Nmao | 来源:发表于2023-02-09 09:42 被阅读0次

    第一步:分别拼接为字符串
    第二步:将字符串转化为list
    第三歩:将两个list合并为dict
    第四步:将dict转换为接送数据

    如:
       import json
    
      keys = ['a', 'b', 'c']
    
      values = [1, 2, 3]
    
      dictionary = dict(zip(keys, values))
    
      j = json.dumps(dictionary)
    
      print(j)
    
    #运行结果:{"a": 1, "b": 2, "c": 3}
    

    相关文章

      网友评论

        本文标题:python list和字典

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