Python字典Dictionary

简介: Python字典Dictionary

Python字典Dictionary


特点:
1.可变容器模型;

2.存储任意类型对象;

3.key不一定唯一,如重复按最后出现的计算;

4.键必须不可变,所以可以用数字,字符串或元组充当,所以用列表就不行

格式:{'k1':'v1','k2':'v2','k3':'v3'}


基本操作


定义一个字典

dict = {'Name': 'Zara', 'Age': 7, 'Class': 'First'};
复制代码


输出

try:
    # 正常输出
    print("dict['Name']: ", dict['Name'])
    # 当key不存在时会抛出KeyError异常
    print("dict['Alice']: ", dict['Alice'])
except KeyError as e:
    print('您访问的'+str(e)+'key不存在')
复制代码


修改/添加

dict['Age'] = 8 # 修改键Age的值为8
print('修改Age后的字典内容 : {0}'.format(dict))
dict['School'] = "DPS School" # 添加新的数据到当前字典
print('添加School后的字典内容 : {0}'.format(dict))
del dict['Name'] # 删除键是'Name'的条目
print('删除Name后的字典内容 : {0}'.format(dict))
dict.clear()     # 清空词典所有条目
print('清空字典后的字典内容 : {0}'.format(dict))
del dict        # 删除词典
try:
    print('删除字典后的字典中Name内容 : {0}'.format(dict['Name']))
except TypeError as e:
    print(e)
复制代码


内置函数/方法

dict = {'Name': 'OSpoon', 'Age': 4, 'Class': 'Last'};
dict1 = {'Name': 'Zara', 'Age': 7, 'Class': 'First'};
dict2 = {'Name': 'Spoon', 'Age': 10, 'Class': 'Last'};
复制代码

1.内置函数
1.1字典元素个数 len(dict)
print('当前字典长度 : {0}'.format(len(dict)))
复制代码

1.2输出字典可打印的字符串 str(dict)
print('当前字典按Str输出 : {0}'.format(str(dict)))
复制代码

1.3变量类型 type(variable)
print('当前变量类型 : {0}'.format(type(dict)))
复制代码


2.内置方法

2.1 删除字典内所有元素 dict.clear()

2.2.1 对象之间赋值时是按引用传递的
dict = {'Name': 'OSpoon', 'Age': 4, 'Class': 'Last'};
dict2 = dict
dict.pop('Name')
print('原始dict id : {0}'.format(id(dict)))
print('赋值后dict id : {0}'.format(id(dict2)))
print('原始dict : {0}'.format(dict))
print('赋值后dictd : {0}'.format(dict2))
复制代码

2.2.2 copy.copy 浅拷贝 只拷贝父对象,不会拷贝对象的内部的子对象
dict = {'Name': ['zhangsan','lisi'], 'Age': 4, 'Class': 'Last'};
dict2 = dict.copy()
dict['Name'].remove('zhangsan')
print('原始dict id : {0}'.format(id(dict)))
print('浅拷贝后dict id : {0}'.format(id(dict2)))
print('原始dict : {0}'.format(dict))
print('浅拷贝后dict : {0}'.format(dict2))
复制代码

2.2.3 copy.deepcopy 深拷贝 拷贝对象及其子对象
from copy import deepcopy
dict = {'Name': ['zhangsan','lisi'], 'Age': 4, 'Class': 'Last'};
dict2 = deepcopy(dict)
dict['Name'].remove('zhangsan')
print('原始dict id : {0}'.format(id(dict)))
print('深拷贝后dict id : {0}'.format(id(dict2)))
print('原始dict : {0}'.format(dict))
print('深拷贝后dict : {0}'.format(dict2))
复制代码

2.3 创建一个新字典,以序列 seq 中元素做字典的键,val 为字典所有键对应的初始值 dict.fromkeys(seq[, val])
seq = ('Google', 'Runoob', 'Taobao')
dict = dict.fromkeys(seq)
print("dict.fromkeys(seq[, val]) : %s" % str(dict))
dict = dict.fromkeys(seq, 10)
print("dict.fromkeys(seq[, val]) : %s" % str(dict))
复制代码

2.4 返回指定键的值,如果值不在字典中返回default值 dict.get(key, default=None)
dict = {'Name': 'OSpoon', 'Age': 4, 'Class': 'Last'}
print("dict.get(key, default=None) : %s" %  dict.get('Age'))
print("dict.get(key, default=None) : %s" %  dict.get('Sex', "Never"))
复制代码

2.5 以列表返回可遍历的(键, 值) 元组数组 dict.items()
dict= {'name': '菜鸟', 'alexa': 10000, 'url': 'www.runoob.com'}
print('dict.items() : {0}'.format(dict.items()))
# 遍历字典列表
for key,values in  dict.items():
    print(key,values)
复制代码

2.6 以列表返回一个字典所有的键 dict.keys()
print('dict.keys() : {0}'.format(dict.keys()))
复制代码

2.7 和get()类似, 但如果键不存在于字典中,将会添加键并将值设为default dict.setdefault(key, default=None)
dict= {'name': '菜鸟', 'alexa': 10000, 'url': 'www.runoob.com'}
dict.setdefault('Age', '10')
print('dict.setdefault(key, default=None) : {0}'.format(dict))
复制代码

2.8 把字典dict2的键/值对更新到dict里 dict.update(dict2)
dict= {'name': '菜鸟', 'alexa': 10000, 'url': 'www.runoob.com'}
dict2= {'name': '菜鸟大大', 'alexa': 20000, 'url': 'www.baidu.com'}
dict.update(dict2)
print('更新后的dict内容 : {0}'.format(dict))
复制代码

2.9 以列表返回字典中的所有值 dict.values()
dict= {'name': '菜鸟', 'alexa': 10000, 'url': 'www.runoob.com'}
print('dict.values() : {0}'.format(dict.values()))
复制代码

2.10 删除字典给定键 key 所对应的值,返回值为被删除的值。key值必须给出。 否则,返回default值。 pop(key[,default])
dict= {'name': '菜鸟', 'alexa': 10000, 'url': 'www.runoob.com'}
print('dict.pop(key) : {0}'.format(dict.pop('name')))



相关文章
|
22天前
|
XML JSON API
如何使用Python将字典转换为XML
本文介绍了如何使用Python中的`xml.etree.ElementTree`库将字典数据结构转换为XML格式。通过定义递归函数处理字典到XML元素的转换,生成符合标准的XML文档,适用于与旧系统交互或需支持复杂文档结构的场景。示例代码展示了将一个简单字典转换为XML的具体实现过程。
16 1
|
3月前
|
存储 JSON 索引
一文让你彻底搞懂 Python 字典是怎么实现的
一文让你彻底搞懂 Python 字典是怎么实现的
62 13
|
2月前
|
存储 Java Serverless
【Python】字典
【Python】字典
37 1
|
3月前
|
存储 数据安全/隐私保护 Python
Python常用数据结构——字典的应用
Python常用数据结构——字典的应用
42 2
|
3月前
|
关系型数据库 MySQL 数据库
Python MySQL查询返回字典类型数据的方法
通过使用 `mysql-connector-python`库并选择 `MySQLCursorDict`作为游标类型,您可以轻松地将MySQL查询结果以字典类型返回。这种方式提高了代码的可读性,使得数据操作更加直观和方便。上述步骤和示例代码展示了如何实现这一功能,希望对您的项目开发有所帮助。
165 4
|
3月前
|
Python
Python 字典删除下标前两个
Python 字典删除下标前两个
22 1
|
2月前
|
存储 安全 Serverless
Python学习四:流程控制语句(if-else、while、for),高级数据类型(字符串、列表、元组、字典)的操作
这篇文章主要介绍了Python中的流程控制语句(包括if-else、while、for循环)和高级数据类型(字符串、列表、元组、字典)的操作。
42 0
|
2月前
|
存储 自然语言处理 数据库
Python字典操作实现文章敏感词检索
Python字典操作实现文章敏感词检索
33 0
|
2月前
|
存储 JSON 数据处理
分析、总结Python使用列表、元组、字典的场景
分析、总结Python使用列表、元组、字典的场景
34 0
|
2月前
|
Python
Python操作:字符串--列表--元组--字典--运算符 (一)
Python操作:字符串--列表--元组--字典--运算符 (一)
23 0
下一篇
DataWorks