SmtC: Show me the Code
Ole Peter Smith
Instituto de Matemática e Estatística
Universidade Federal de Goiás
http://www.olesmith.com.br

Python
Como libertar um povo que preza seus correntes?
Niculau Maquiavel.
< JSON | Dictionaries | List of Dictionaries >

Python dict

Associated arrays - or Hashes:
??First.py3 Listing: First.py3.
#!/usr/bin/python3

#A dict
person={
    "Name": "Olé",
    "Email": "ole@ufg.br",
    "Birthday": "11/01/1964",
    "Phone": "62 5555555",
    "Fax": "62 5555555",
}

keys=list(person.keys())
keys.sort()

for key in keys:
    print(key+":",person[key])

fax=person[ "Fax" ]
print("FAX",fax)

Output:
Warning! Unable to pipe system command: cd /usr/local/Slides/1_Disciplines/5_MEBD/01_Python/02_Dicts; /usr/bin/python3 First.py3
Output from: /usr/bin/python3 First.py3
< JSON | Dictionaries | List of Dictionaries >
Messages:
0 secs.