当前位置:Gxlcms > Python > python怎么在字典中添加新内容

python怎么在字典中添加新内容

时间:2021-07-01 10:21:17 帮助过:292人阅读

向字典添加新内容的方法是增加新的键/值对,修改或删除已有键/值对如下实例:

#!/usr/bin/python
dict = {'Name': 'Zara', 'Age': 7, 'Class': 'First'}

dict['Age'] = 8 # 更新
dict['School'] = "RUNOOB" # 添加

print "dict['Age']: ", dict['Age']
print "dict['School']: ", dict['School']

输出结果如下:

dict['Age']:  8
dict['School']:  RUNOOB

更多Python相关技术文章,请访问Python教程栏目进行学习!

以上就是python怎么在字典中添加新内容的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行