当前位置:   article > 正文

Python字典的创建和使用方法_创建字典,完成字典的增删查改及对value进行升序输出的操作,实现字典key和value使

创建字典,完成字典的增删查改及对value进行升序输出的操作,实现字典key和value使
  1. # 1.创建字典 {key: value, key: value}
  2. scores = {'Bob': 90, 'Jack': 86, 'Rose': 100}
  3. # print(type(scores))
  4. scores1 = {'zhangsan': [90, 80, 100], 'lisi': [100, 50, 60]}
  5. # print(scores1)
  6. #创建字典方式二 使用字典的构造方法创建字典
  7. items1 = dict(one=1, two=2, three=3)
  8. # print(items1)
  9. # 3、方法三 使用推导式创建字典(生成表达式)
  10. items2 = {num: num ** 2 for num in range(1,10)}
  11. # print(items2)
  12. # 4、 方法四 使用zip函数将两个序列压缩成字典
  13. items3 = dict(zip(['a', 'b', 'c'], [1, 2, 3]))
  14. # print(items3)
  15. # 1、字典中的key是唯一的 2、添加key存在就是修改,key不存在才是添加
  16. scores['Daniel'] = 99
  17. # print(scores)
  18. scores['Daniel'] = 100
  19. # print(scores)
  20. # 字典遍历
  21. #1 、遍历key
  22. # for key in scores.keys():
  23. # print(key)
  24. # for value in scores.keys():
  25. # print(value)
  26. # for item in scores.items():
  27. # print(item)
  28. # for key, value in enumerate(scores):
  29. # print(key, value)
  30. # 获取getkeyget(key, defaultvalue)
  31. print(scores.get(
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/714396
推荐阅读
相关标签
  

闽ICP备14008679号