Risposte:
Chiama dict
senza parametri
new_dict = dict()
o semplicemente scrivere
new_dict = {}
{}
oltre dict()
e 5 volte per []
oltre list()
.
Puoi farlo
x = {}
x['a'] = 1
Sapere come scrivere un dizionario predefinito è utile anche sapere:
cmap = {'US':'USA','GB':'Great Britain'}
# Explicitly:
# -----------
def cxlate(country):
try:
ret = cmap[country]
except KeyError:
ret = '?'
return ret
present = 'US' # this one is in the dict
missing = 'RU' # this one is not
print cxlate(present) # == USA
print cxlate(missing) # == ?
# or, much more simply as suggested below:
print cmap.get(present,'?') # == USA
print cmap.get(missing,'?') # == ?
# with country codes, you might prefer to return the original on failure:
print cmap.get(present,present) # == USA
print cmap.get(missing,missing) # == RU
cxlate
tua risposta sembri troppo complicato. Terrei solo la parte di inizializzazione. (di per cxlate
sé è troppo complicato. Potresti semplicemente return cmap.get(country, '?')
.)
KeyError
invece di uno bare tranne (che catturerebbe cose come KeyboardInterrupt
e SystemExit
).
>>> dict(a=2,b=4)
{'a': 2, 'b': 4}
Aggiungerà il valore nel dizionario Python.
d = dict()
o
d = {}
o
import types
d = types.DictType.__new__(types.DictType, (), {})
Quindi ci sono 2 modi per creare un dict:
my_dict = dict()
my_dict = {}
Ma tra queste due opzioni {}
è più efficiente di dict()
più è leggibile.
CONTROLLA QUI
>>> dict.fromkeys(['a','b','c'],[1,2,3])
{'a': [1, 2, 3], 'b': [1, 2, 3], 'c': [1, 2, 3]}