Python/dictionaries: Difference between revisions
(Created page with "= Dictionaries in Python = == How to read/write dictionaries? == <source lang="python"> d = dict() # or d = {} # Key : Value structure d = { 'software' : 10 } # Read a v...") |
|||
Line 33: | Line 33: | ||
keys = [] | keys = [] | ||
# key : value | # key : value | ||
for key, value in d.items(): | for key, value in d.items(): |
Revision as of 21:32, 28 September 2020
Dictionaries in Python
How to read/write dictionaries?
d = dict()
# or
d = {}
# Key : Value structure
d = { 'software' : 10 }
# Read a value from the dictionary
print(d['software'])
# 10
# Add a new key to the dictionary
d['language'] = 6
word = 'hello'
if word in d:
print(f'{word} is in the dictionary')
else:
print(f'{word} is not in the dictionary')
Sort a dictionary
keys = []
# key : value
for key, value in d.items():
keys.append(key)
keys.sort()
print(keys)
for key in keys:
print(f'{key} is here so many times:', d[key])