@ Introducing Python: Modern Computing in Simple Packages by Bill Lubanovic (No. 1642 / 12833)
Informationen zur Funktion get (), mit der die Elemente des Python-Wörterbuchs abgerufen werden.
If not, you get the optional value, if you specified one:
>>> pythons.get('Mark', 'Not a Pythong')
'Not a Python'
Ein Beispiel, wenn es nicht im Wörterbuch "Pythons" enthalten ist.
Ich habe es versucht.
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'))
Ergebnis
Success time: 0 memory: 23352 signal:0
borg
human
unknown