0


python字典转换成列表

  1. dict= {"东方航空":100,
  2. "西南航空":99,
  3. "国泰航空":98,}
  4. 需要把字典dict转换成列表
  5. 1、建一个空的列表
  6. 2、循环读取字典的内容
  7. 3、追加到空列表中
  8. s
  9. list = []
  10. for type,value in dict.items():
  11. # items,遍历所有内容
  12. # 只要值
  13. tmpes = value
  14. list.append(tmpes)
  15. print(list)
  16. dictlist=[]
  17. for keys, value in dict.items():
  18. # 键和值都要
  19. temp = (keys,value)
  20. dictlist.append(temp)
  21. print(dictlist)
标签:

本文转载自: https://blog.csdn.net/romon19/article/details/114522245
版权归原作者 theone19 所有, 如有侵权,请联系我们删除。

“python字典转换成列表”的评论:

还没有评论