“Python Dict” Kod odpowiedzi

Słownik Python

dictionary = {
    "name": "Elie",
    "family name": "Carcassonne",
    "date of born": "01/01/2001",
    "list": ["hey", "hey"]
}
moi_crn

Python Dict

# 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"
}
codingiscool

Python Dict

mydictionary = {'name':'python', 'category':'programming', 'topic':'examples'}

for x in mydictionary:
	print(x, ':', mydictionary[x])
David Cao

Słowniki Pythona

#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))
LazFlex

Słowniki Pythona

thisdict = {
  "brand": "Ford",
  "model": "Mustang",
  "year": 1964
}
print(thisdict["brand"])
SAMER SAEID

Python Dict

>>> d = {}
>>> d
{}
>>> d = {'dict': 1, 'dictionary': 2}
>>> d
{'dict': 1, 'dictionary': 2}
Blushing Booby

Odpowiedzi podobne do “Python Dict”

Pytania podobne do “Python Dict”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu