How to add elements to python dictionary

爱喝马黛茶的安东尼
Release: 2019-11-23 10:36:02
Original
11183 people have browsed it

How to add elements to python dictionary

How to add elements to a python dictionary?

Dictionary is another mutable container model and can store any type of object.

Each key-value key=>value pair in the dictionary is separated by colon:. Each key-value pair is separated by comma,. The entire dictionary is included in curly braces {}. The format is as follows:

d = {key1 : value1, key2 : value2 }
Copy after login

The way to add new content to a dictionary is to add new key/value pairs.

Related recommendations: "Python Video Tutorial"

Example:

#!/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']
Copy after login

Output result of the above example:

dict['Age']:  8
dict['School']:  RUNOOB
Copy after login
Recommended related articles:
1.How to append elements to a collection in python
2.How to add elements to an array in python      
Related video recommendations:
​ ​
1.2019python self-study video

The above is the detailed content of How to add elements to python dictionary. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!