@ Introducing Python: Modern Computing in Simple Packages by Bill Lubanovic (No. 1642 / 12833)
À propos de la fonction get () qui récupère les éléments du dictionnaire Python.
If not, you get the optional value, if you specified one:
>>> pythons.get('Mark', 'Not a Pythong')
'Not a Python'
Un exemple quand il n'est pas inclus dans le dictionnaire "pythons".
J'ai essayé.
http://ideone.com/zUP5Pu
mydic = {'7of9' : 'borg', 'Chakotay' : 'human', 'Janeway' : 'human'}
print(mydic.get('7of9', 'unknown'))
print(mydic.get('Chakotay', 'unknown'))
print(mydic.get('Tuvok', 'unknown'))
résultat
Success time: 0 memory: 23352 signal:0
borg
human
unknown
Recommended Posts