A Byte of Python by Swaroop C H
Author:Swaroop C H
Language: eng
Format: mobi, pdf
Published: 2013-08-18T16:00:00+00:00
Dictionary
A dictionary is like an address-book where you can find the address or contact details of a person by knowing only his/her name i.e. we associate keys (name) with values (details). Note that the key must be unique just like you cannot find out the correct information if you have two persons with the exact same name.
Note that you can use only immutable objects (like strings) for the keys of a dictionary but you can use either immutable or mutable objects for the values of the dictionary. This basically translates to say that you should use only simple objects for keys.
Pairs of keys and values are specified in a dictionary by using the notation d = {key1 : value1, key2 : value2 }. Notice that the key-value pairs are separated by a colon and the pairs are separated themselves by commas and all this is enclosed in a pair of curly braces.
Remember that key-value pairs in a dictionary are not ordered in any manner. If you want a particular order, then you will have to sort them yourself before using it.
The dictionaries that you will be using are instances/objects of the dict class.
Example (save as using_dict.py):
# 'ab' is short for 'a'ddress'b'ook
Download
This site does not store any files on its server. We only index and link to content provided by other sites. Please contact the content providers to delete copyright contents if any and email us, we'll remove relevant links or contents immediately.
Deep Learning with Python by François Chollet(12579)
Hello! Python by Anthony Briggs(9918)
OCA Java SE 8 Programmer I Certification Guide by Mala Gupta(9797)
The Mikado Method by Ola Ellnestam Daniel Brolund(9780)
Dependency Injection in .NET by Mark Seemann(9341)
A Developer's Guide to Building Resilient Cloud Applications with Azure by Hamida Rebai Trabelsi(9278)
Hit Refresh by Satya Nadella(8823)
Algorithms of the Intelligent Web by Haralambos Marmanis;Dmitry Babenko(8303)
Sass and Compass in Action by Wynn Netherland Nathan Weizenbaum Chris Eppstein Brandon Mathis(7784)
Test-Driven iOS Development with Swift 4 by Dominik Hauser(7764)
Grails in Action by Glen Smith Peter Ledbrook(7699)
The Kubernetes Operator Framework Book by Michael Dame(7649)
The Well-Grounded Java Developer by Benjamin J. Evans Martijn Verburg(7558)
Exploring Deepfakes by Bryan Lyon and Matt Tora(7438)
Practical Computer Architecture with Python and ARM by Alan Clements(7364)
Implementing Enterprise Observability for Success by Manisha Agrawal and Karun Krishnannair(7349)
Robo-Advisor with Python by Aki Ranin(7321)
Building Low Latency Applications with C++ by Sourav Ghosh(7231)
Svelte with Test-Driven Development by Daniel Irvine(7192)
