• 主页

  • 投资

  • IT

    🔥
  • 设计

  • 销售

关闭

返回栏目

关闭

返回python栏目

35 - 数据类型 - dict字典 - d = {"A":"a",} - 操作

作者:

贺及楼

成为作者

更新日期:2024-10-28 11:10:50

数据类型 - dict字典

字典{}的简介

Python 中的字典(dict)是一种内置的数据结构,用于存储键值对。它基于哈希表实现,因此查找效率高。字典的键必须是不可变类型,如字符串或元组,而值可以是任何数据类型。字典支持快速访问、插入和删除操作,提供了灵活的数据处理方式。它常用于存储对象属性、数据库查询结果、缓存数据等,是实现映射和查找功能的理想选择。

python操作dict{}字典

  1. data_dict = dict() # dict方法创建
  2. data_dict = {} # 直接创建
  3. dict = {
  4. "id" : "01",
  5. "data" : "ok",
  6. }

dict{}字典总结

方式 代码 释义 成功 失败
a = dict["id"] 查dict{}字典 报错
增/改 dict["id"] = "02" 增/改dict{}字典 什么事没有 增加
dict.pop("id") 删dict{}字典 什么事没有 报错
更改 dict.update(dict2) 批量更改dict{}字典 什么事没有 增加
遍历 dict.items(): 遍历键值 / /
遍历 dict.keys(): 遍历键 / /
遍历 dict.values(): 遍历值 / /

查dict{}字典

  1. a = dict["id"] # a 赋值字符串 01

查dict{}字典
dict字典空报错
空的话会报错KeyError: ‘id1’

增/改dict{}字典

  1. dict["id"] = "02"

增/改dict{}字典
增/改dict{}字典

删dict{}字典

  1. dict.pop("id") # 如果没有这个键,那么会报错

删dict{}字典

批量更改dict{}字典

  1. dict2 = {
  2. "id" : "02",
  3. }
  4. dict.update(dict2)
  5. print(dict)
  6. print(dict2)

更改更改字典
可以看见dict的id被改成02了

遍历,分key,valuedict{}字典

  1. for key,value in dict.items():
  2. print(key+value)

遍历字典
看见key、value都遍历出来了

遍历,keys()dict{}字典

  1. for key in dict.keys():
  2. print(key)

key遍历
看见只有key遍历出来了

遍历,values()dict{}字典

  1. for value in dict.values():
  2. print(value)

value遍历字典
看见只有values遍历出来了

一般出现在类的写法上

  1. ## 无,就设置 ;有就修改,可以None setdefault()
  2. dict = {"duniang": "度娘", "google": "Google 搜索"}
  3. print "Value : %s" % dict.setdefault("duniang", None)
  4. print "Value : %s" % dict.setdefault("Taobao", "淘宝")
  5. Value : 度娘
  6. Value : 淘宝