Sevk tablolar, daha doğrusu sözlükleri.
Siz anahtar kelimesini eşleştirin aka. fonksiyonlar performans gösteren menü seçimi değerleri söz konusu seçimler:
def AddRecordHandler():
print("added")
def DeleteRecordHandler():
print("deleted")
def CreateDatabaseHandler():
print("done")
def FlushToDiskHandler():
print("i feel flushed")
def SearchHandler():
print("not found")
def CleanupAndQuit():
print("byez")
menuchoices = {'a':AddRecordHandler, 'd':DeleteRecordHandler, 'c':CreateDatabaseHandler, 'f':FlushToDiskHandler, 's':SearchHandler, 'q':CleanupAndQuit}
ret = menuchoices[input()]()
if ret is None:
print("Something went wrong! Call the police!")
menuchoices['q']()
girişinizi doğrulamak için unutmayın! :)
Bunların çoğaltılması: http://stackoverflow.com/search?q=%5Bpython%5D+switch. –
Ayrıca bakınız soru [python'daki anahtar durumu çalışmıyor; başka bir desene ihtiyacım var] (http://stackoverflow.com/questions/3886641/switch-case-in-python-doesnt-work-need-another-pattern/3893242#3893242). – martineau