What does key mean in python

Release: 2019-07-08 09:02:44
Original
22460 people have browsed it

What does key mean in python

The key in Python is the key in the Python dictionary.

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

Each key=>value pair in the dictionary is separated by colon :, and 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 key is generally unique. If the last key-value pair is repeated, the previous one will be replaced. The value does not need to be unique.

>>>dict = {'a': 1, 'b': 2, 'b': '3'} 
>>> dict['b']'3'
>>> dict{'a': 1, 'b': '3'}
Copy after login

The value can be of any data type, but the key must be immutable, such as string, number or tuple.

A simple dictionary example:

dict = {'Alice': '2341', 'Beth': '9102', 'Cecil': '3258'}
Copy after login

You can also create a dictionary like this:

dict1 = { 'abc': 456 }
dict2 = { 'abc': 123, 98.6: 37 }
Copy after login

Output key value:

#!/usr/bin/python 
dict = {'Name': 'Zara', 'Age': 7, 'Class': 'First'}
print "dict['Name']: ", dict['Name']
print "dict['Age']: ", dict['Age']
Copy after login
dict['Name']:  Zara
dict['Age']:  7
Copy after login

More Python related For technical articles, please visit the Python Tutorial column to learn!

The above is the detailed content of What does key mean in python. 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