Kamus Python
dictionary = {
"name": "Elie",
"family name": "Carcassonne",
"date of born": "01/01/2001",
"list": ["hey", "hey"]
}
moi_crn
dictionary = {
"name": "Elie",
"family name": "Carcassonne",
"date of born": "01/01/2001",
"list": ["hey", "hey"]
}
# A dict (dictionary) is a data type that store keys/values
myDict = {"name" : "bob", "language" : "python"}
print(myDict["name"])
# Dictionaries can also be multi-line
otherDict {
"name" : "bob",
"phone" : "999-999-999-9999"
}
mydictionary = {'name':'python', 'category':'programming', 'topic':'examples'}
for x in mydictionary:
print(x, ':', mydictionary[x])
#Python dictionaries consists of key value pairs tha
#The following is an example of dictionary
state_capitals = {
'Arkansas': 'Little Rock',
'Colorado': 'Denver',
'California': 'Sacramento',
'Georgia': 'Atlanta'
}
#Adding items to dictionary
#Modification of the dictionary can be done in similar maner
state_capitals['Kampala'] = 'Uganda' #Kampala is the key and Uganda is the value
#Interating over a python dictionary
for k in state_capitals.keys():
print('{} is the capital of {}'.format(state_capitals[k], k))
thisdict = {
"brand": "Ford",
"model": "Mustang",
"year": 1964
}
print(thisdict["brand"])
>>> d = {}
>>> d
{}
>>> d = {'dict': 1, 'dictionary': 2}
>>> d
{'dict': 1, 'dictionary': 2}