美文网首页
python dict转换list

python dict转换list

作者: _fishman | 来源:发表于2020-06-30 20:29 被阅读0次
    dit = {'a': '1',
           'b': '2',
           'c': '3',
           'd': '4'}
    
    # 将字典的key转换成列表
    lst = list(dit)
    print(lst) # ['a', 'b', 'c', 'd']
    
    # 将字典的value转换成列表
    lst2 = list(dit.values())
    print(lst2)  # ['1', '2', '3', '4']
    

    相关文章

      网友评论

          本文标题:python dict转换list

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