欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

python3中的字典(三)

程序员文章站 2022-06-15 19:31:15
...

字典,类似于JSON对象;采用{}内加键值对的方式;

一、字典一般形式以及字典的增删改查

blog = { 'name': 'lanluyug', 'title': 'python3'}
print(blog['name']) # 用键来取值
print(blog['title'])
blog['age'] = 18 # 添加键-值对
blog['name'] = 'lanluhu' # 修改值
del blog['title'] # 删除键-值对

python3中的字典(三)

其中:左侧的是键,右侧的是值,采用逗号分隔;其中键为字符串形式;值可以为数字、字符串、列表甚至是字典;

二、字典的遍历

blog = { 'name': 'lanluyug', 'title': 'python3'}
for key, value in blog.items(): # 利用items函数遍历键-值对
    print('\nkey = ' + key)
    print('\nvalue = ' + value)

for key in blog.keys(): # 利用keys函数遍历键
    print('\nkey = ' + key)

for value in blog.values(): # 利用items函数遍历值
    print('\nvalue = ' + value)

python3中的字典(三)

三、字典的嵌套,列表中的字典

blog = {'title' : {'python': 'dict'} }
print(blog['title'])
print(blog['title']['python'])
# list中的字典
blogList = [];
blogList.append(blog)
print(blogList)

 python3中的字典(三)

参考文献:

【1】《python编程从入门到实践》 袁国忠译

相关标签: python