Dictionaries in python are similar to “associative arrays” in some other languages. Dictionaries are indexed by keys, which can be any immutable type, e.g strings and numbers.

Creating a dictionary

#Create a doctionary
my_dictionary = {}
my_dictionary["MyKeyA"] = "Something"
my_dictionary["MyKeyB"] = "Something else"

#Alternative method

my_dictionary = {"MyKeyA": "Something", "MyKeyB": "Something else"}

Accessing a dictionary

print(my_dictionary["MyKeyB"])

Does dictionary key exist?

    if 'MyKeyName' in my_dictionary:
        print("MyKeyName: " + my_dictionary['MyKeyName'])
USEFUL?
We benefit hugely from resources on the web so we decided we should try and give back some of our knowledge and resources to the community by opening up many of our company’s internal notes and libraries through mini sites like this. We hope you find the site helpful.
Please feel free to comment if you can add help to this page or point out issues and solutions you have found, but please note that we do not provide support on this site. If you need help with a problem please use one of the many online forums.

Comments

Your email address will not be published. Required fields are marked *