python入门学习:5.字典
Posted 天星小苑
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python入门学习:5.字典相关的知识,希望对你有一定的参考价值。
python入门学习:5.字典
关键点:字典
5.1 使用字典
??在python中字典是一系列键-值对。每个键都和一个值关联,你可以使用键来访问与之相关联的值。与键相关联的值可以是数字、字符串、列表乃至字典。在python中,字典用花括号表示。如下,健-值是相互关联的两个值,键和值之间用冒号分开,而健-值对之间用逗号分开
1alien_0 = {‘color‘:‘green‘,‘point‘:5}
5.1.1 访问字典中的值
??要获取与键相关联的值,可以依次指定字典名和放在方括号内的键。如下所示:
1alien_0 = {‘color‘:‘green‘,‘point‘:5}
2print(alien_0[‘color‘])
5.1.2 添加健-值对
??字典是一种动态结构,可随时在其中添加键-值对。要添加健-值对,可依次指定字典名、用方括号括起来的键和与之关联的值
1alien_0 = {‘color‘:‘green‘,‘point‘:5}
2print(alien_0)
3alien_0[x_position] = 0 #添加x位置
4alien_0[y_position] = 25 #添加y位置
5print(alien_0)
6{‘point‘: 5, ‘color‘: ‘green‘}
7{‘y_position‘: 25, ‘x_position‘: 0, ‘point‘: 5, ‘color‘: ‘green‘}
8#注意,健-值对的排列顺序与添加顺序不同。python不关注健值对的python顺序,只关心键和值之间的关联
5.1.3 创建一个空字典
??有些场合需要先创建一个空字典,使用一对空的{}即可
1alien_0 = {}
2alien_0[‘color‘] = ‘green‘
3alien_0[‘point‘] = 5
4print(alien_0)
5.1.4 修改字典中的值
??要修改字典中的值,可依次指定字典名、用方括号括起的键以及该键关联的新值。
1alien_0 = {‘color‘:‘green‘,‘point‘:5}
2print(alien_0)
3alien_0[‘color‘] = ‘red‘
4print(alien_0)
5.1.5 删除键-值对
??对于字典中不需要的信息,可使用del语句将相应的键-值对彻底删除。使用del语句必须指定字典名和要删除的键。
1alien_0 = {} #创建一个空字典
2alien_0[‘color‘] = ‘green‘ #添加一个健值对
3alien_0[‘point‘] = 5 #添加一个健值对
4print(alien_0)
5del alien_0[‘point‘] #删除一个健值对
6print(alien_0)
5.2 遍历字典
5.2.1 遍历所有的键-值对
??使用for循环通过方法items()遍历键和值
1user_0 = {
2 ‘username‘: ‘efermi‘,
3 ‘frist‘ : ‘enrico‘,
4 ‘last‘: ‘fermi‘
5}
6user_0 = {
7 ‘username‘: ‘efermi‘,
8 ‘frist‘ : ‘enrico‘,
9 ‘last‘: ‘fermi‘
10}
11for key,value in user_0.items():
12 print("
keys:"+ key)
13 print("Value:"+value)
14#注意遍历字典时,健值对返回的顺序也与存储顺序不同
5.2.2 遍历字典中的所有键
??for循环遍历,通过方法keys()获取健值
1user_0 = {
2 ‘username‘: ‘efermi‘,
3 ‘frist‘ : ‘enrico‘,
4 ‘last‘: ‘fermi‘
5}
6for key in user_0.keys():
7 print("
keys:"+ key)
5.2.3 按顺序遍历字典中的所有键
??字典总是明确记录键和值之间的关联关系,但是获取字典元素时,获取顺序是不可预测的,要以特定的顺序返回元素,一种办法是在for循环中对返回的键进行排序。为此可以使用函数sorted()来获得按特定顺序排列的键列表的腐败:
1favorite_languages = {
2 ‘jen‘: ‘python‘,
3 ‘sarah‘: ‘c‘,
4 ‘edward‘:‘ruby‘,
5 ‘phil‘: ‘python‘,
6 }
7for name in sorted(favorite_languages.keys()): #生成key列表
8#按字母排序
9Edward,thank you for talking the poll.
10Jen,thank you for talking the poll.
11Phil,thank you for talking the poll.
12Sarah,thank you for talking the poll.
5.2.4 遍历字典中的所有值
??如果只关心值,可通过values(),返回一个值列表,不包含任何键
1favorite_languages = {
2 ‘jen‘: ‘python‘,
3 ‘sarah‘: ‘c‘,
4 ‘edward‘:‘ruby‘,
5 ‘phil‘: ‘python‘,
6 }
7for language in favorite_languages.values(): #生成value列表
8 print(language.title())
9
10C
11Ruby
12Python
13Python
??通过set()可以让python找出列表中独一无二的元素,剔除重复元素
1favorite_languages = {
2 ‘jen‘: ‘python‘,
3 ‘sarah‘: ‘c‘,
4 ‘edward‘:‘ruby‘,
5 ‘phil‘: ‘python‘,
6 }
7for language in set(favorite_languages.values()): #生成value列表
8 print(language.title())
5.3 嵌套
??有时候,需要将一系列字典存储在列表中,或将列表作为值存储在字典中,这称为嵌套。
5.3.1 字典列表
??列表中嵌套字典。
1alien_0 = {‘color‘: ‘green‘,‘point‘:5}
2alien_1 = {‘color‘: ‘yellow‘,‘point‘:10}
3alien_2 = {‘color‘: ‘red‘,‘point‘:15}
4aliens = [alien_0,alien_1,alien_2]
5for alien in aliens:
6 print(alien)
5.3.2 在字典中存储列表
??有时候需要将字典存储在列表中。例如:
1pizza = {
2 ‘crust‘:‘thick‘,
3 ‘toppings‘:[‘mushrooms‘,‘extra chesse‘],
4 }
5print("you ordered a" + pizza[‘crust‘] + "-crust pizaa" + "whith the following toppings:")
6for topping in pizza[‘toppings‘]:#遍历字典中列表
7 print(" " + topping)
5.3.3 在字典中存储字典
??在字典中也可以嵌套字典,不过这样会使代码结构变地复杂
1users = {
2 ‘aeinstein‘ : {
3 ‘frist‘:‘albert‘,
4 ‘last‘:‘einstein‘,
5 ‘location‘:‘princetion‘,
6 },
7 ‘mcurie‘ : {
8 ‘frist‘:‘marie‘,
9 ‘last‘:‘curie‘,
10 ‘location‘:‘paris‘,
11 },
12 }
13for username, user_info in users.items():
14 print("
UserName: "+ username)
15 full_name = user_info[‘frist‘] + " " + user_info[‘last‘]
16 location = user_info[‘location‘]
17
18 print(" full name: "+ full_name.title())
19 print(" location: "+ location.title())
以上是关于python入门学习:5.字典的主要内容,如果未能解决你的问题,请参考以下文章