Python——字典

简介: Python——字典

什么是字典?


       有时候我们需要存储一组相关党得数据的时候,比如要存储一个人的信息,那么有user_name, age, birthday 等,如果这些信息都存储在列表中,比如[ 'user_name' , 'age' , 'birthday'] 那么用起来可能不是很方便。比较方便的操作是,我直接通过user_name这个key就可以拿到这个值,我通过user_name就可以给这个key设置值值,那么就可以通过字典的方式实现我们的需求。


字典基础


1.创建字典:我们可以通过两种方式创建字典:


       person = { " user_name" :'python' ,'age' : 19}


或者是使用dirc函数

person =  dict(username = 'python' ,age = 19)

# 字典是个什么 key : value
# 字典如何定义
#定义一个空字典 dict
student_dict = {}
print(student_dict)
print(type(student_dict))
#
student_dict1 = {
    "user_name": "Micheal",
    "age": 18,
    "birthday": "1017"
}
print(student_dict1["age"])
student_dict2 = {
    "user_name": "Jack",
    "age": 19,
    "birthday": "1018"
}
student_list3 = [student_dict1, student_dict2]
print(student_list3)
for obj in student_list3:
    print(obj["age"])


2.基本操作


       len(d):返回字典的键值对的长度


       d[k]:获取k这个key对应的值


       d[k] = v:设置键为k的值v ,如果字典中不存在键为k的这一项,那么自动的添加进去


       k   in   d :检查d这个字典中是否包含键为k的这一项字典中的键可以是任意的不可变类型,比如:浮点类型、整形、字符串

# 字典是个什么 key : value
# 字典如何定义
#定义一个空字典 dict
student_dict = {}
print(student_dict)
print(type(student_dict))
#
student_dict1 = {
    "user_name": "Micheal",
    "age": 18,
    "birthday": "1017"
}
print(student_dict1["age"])
student_dict2 = {
    "user_name": "Jack",
    "age": 19,
    "birthday": "1018"
}
# key : value
print("*" * 50)
print(len(student_dict1))
#
student_dict1["age"] = 20
print(student_dict1)
print(student_dict1["user_name"])
if "user_name1" in student_dict1:
    print("在")
else:
    print("不在")
#
student_dict3 = dict(
    user_name="Micheal",
    age=18,
    birthday="1017",
)
print(student_dict3)
student_dict2 = {
    "user_name": "Jack",
    "age": 19,
    "birthday": "1018"
}

字典的常用方法:


1.clear:清除字典中所有的项


       a = {”user_name" : 'python' , 'age' : 19}


       print(a)


       a.clear()


       print(a)


2.get:访问字典中那个键对应的那个值,这个方法不会抛出异常


       a = { "user_name" : 'python' , 'age' : 19}


       username = a.get('username')


       print(username)


       city = a.get('city') #获取到的是一个None


       #也可以指定一个,在没有获取到这个值时候的默认值


       city = a.get('city','changsha') # 返changsha


       city = a[ 'city' ] #抛出异常




1bcfbed3d6de4ce1910b60885dc37222.png



3.pop:用来获得对应于给定键的值,然后将这个键和值的项从字典中删除。会返回这个值

       d = { 'x' : 1 , 'y' : 2}

       d.pop('x')

5e58f3589dc14fc69cb22e1e1b9826ff.png

4.update:用一个字典更新另外一个字典,如果碰到相同的键,则会覆盖。


       a = { ‘url' : 'http://www.baidu.com/' ,'title' : "baidu"}


       b = { "url" : "http://www.google.com/",'new_value' : "new_value"}


       a.update(b)


       print(a)


第一种:


e5b27f6ed9324791be62c0d079904898.png


第二种:


32ed57e45bd141e69c4623d93af1f61a.png


第三种:




3d8f67f6dfb0494c9639e48a36c34bee.png



416ff2f73bef4573b59045ca8319791d.png

第四种:

89c411ae47f644be9c258ce2d362056a.png

相关文章
|
2月前
|
存储 JSON 索引
一文让你彻底搞懂 Python 字典是怎么实现的
一文让你彻底搞懂 Python 字典是怎么实现的
53 13
|
2月前
|
存储 数据安全/隐私保护 Python
Python常用数据结构——字典的应用
Python常用数据结构——字典的应用
|
2月前
|
关系型数据库 MySQL 数据库
Python MySQL查询返回字典类型数据的方法
通过使用 `mysql-connector-python`库并选择 `MySQLCursorDict`作为游标类型,您可以轻松地将MySQL查询结果以字典类型返回。这种方式提高了代码的可读性,使得数据操作更加直观和方便。上述步骤和示例代码展示了如何实现这一功能,希望对您的项目开发有所帮助。
121 4
|
2月前
|
Python
Python 字典删除下标前两个
Python 字典删除下标前两个
|
1月前
|
存储 安全 Serverless
Python学习四:流程控制语句(if-else、while、for),高级数据类型(字符串、列表、元组、字典)的操作
这篇文章主要介绍了Python中的流程控制语句(包括if-else、while、for循环)和高级数据类型(字符串、列表、元组、字典)的操作。
30 0
|
1月前
|
存储 自然语言处理 数据库
Python字典操作实现文章敏感词检索
Python字典操作实现文章敏感词检索
|
1月前
|
存储 JSON 数据处理
分析、总结Python使用列表、元组、字典的场景
分析、总结Python使用列表、元组、字典的场景
|
1月前
|
存储 Java Serverless
【Python】字典
【Python】字典
27 0
|
1月前
|
Python
Python操作:字符串--列表--元组--字典--运算符 (一)
Python操作:字符串--列表--元组--字典--运算符 (一)
|
1月前
|
Python
Python操作:字符串--列表--元组--字典--运算符 (二)
Python操作:字符串--列表--元组--字典--运算符 (二)