美文网首页
Python - 字典

Python - 字典

作者: 村长225 | 来源:发表于2018-09-04 13:48 被阅读27次

空字典

empty = {}

字典遍历

  • 遍历所有键
calorie = {'apple': 54, 'orange': 44, 'banana': 93}
for key in calorie.keys():
    print(key)
  • 遍历所有值
calorie = {'apple': 54, 'orange': 44, 'banana': 93}
for value in calorie.values():
    print(value)
  • 遍历所有键值对
calorie = {'apple': 54, 'orange': 44, 'banana': 93}
for key, value in calorie.items():
    print(key, value)

相关文章

网友评论

      本文标题:Python - 字典

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