“Comment stocker la variable dans le dictionnaire” Réponses codées

Comment stocker la variable dans le dictionnaire

>>> mydict = {'a': 'hello', 'b': 'world'}
>>> for x in mydict:
...    val = mydict[x]
...    mydict[x] = val.upper()
...    print('Changed what', x, 'points to: from', val, 'to', mydict[x])
Changed what b points to: from world to WORLD
Changed what a points to: from hello to HELLO
Helpful Hawk

Comment stocker la variable dans le dictionnaire

>>> mydict = {"message": {"hello": 123456}}
>>> print(mydict['message'])
{'hello': 123456}
>>> print(mydict['message']['hello'])
123456
Helpful Hawk

Réponses similaires à “Comment stocker la variable dans le dictionnaire”

Questions similaires à “Comment stocker la variable dans le dictionnaire”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code