四級菜單實現(Python)

來源:互聯網
上載者:User

標籤:inpu   span   南京   列表   字典   存在   else   rip   strip   

menu_dict = {
‘山東‘ : {
‘青島‘ : {
‘四方‘:{‘興隆路‘,‘平安路‘,‘杭州路‘},
‘黃島‘:{},
‘嶗山‘:{}
},
‘濟南‘ : {
‘曆城‘:{},
‘槐蔭‘:{},
‘高新‘:{}
},
},
‘江蘇‘ : {
‘蘇州‘ : {
‘滄浪‘:{},
‘相城‘:{},
‘平江‘:{}
},
‘南京‘ : {
‘白下‘:{},
‘秦淮‘:{},
‘浦口‘:{}
}
}
}

current_layer = menu_dict
parent_layers = []#把不同層級的字典儲存在列表中(列表中嵌套字典)[menu_dict,menu_dict[省],。。。。],到最後一層的時候列表是下面這個樣子
#parent_layers[0]={‘山東‘: {‘青島‘: {‘四方‘: {‘杭州路‘, ‘興隆路‘, ‘平安路‘}, ‘黃島‘: {}, ‘嶗山‘: {}}, ‘濟南‘: {‘曆城‘: {}, ‘槐蔭‘: {}, ‘高新‘: {}}}, ‘江蘇‘: {‘蘇州‘: {‘滄浪‘: {}, ‘相城‘: {}, ‘平江‘: {}}, ‘南京‘: {‘白下‘: {}, ‘秦淮‘: {}, ‘浦口‘: {}}}}
#parent_layers[1]={‘青島‘: {‘四方‘: {‘杭州路‘, ‘興隆路‘, ‘平安路‘}, ‘黃島‘: {}, ‘嶗山‘: {}}, ‘濟南‘: {‘曆城‘: {}, ‘槐蔭‘: {}, ‘高新‘: {}}}
#parent_layers[2]={‘四方‘: {‘杭州路‘, ‘興隆路‘, ‘平安路‘}, ‘黃島‘: {}, ‘嶗山‘: {}}while True:
 for key in current_layer:
print(key)
choice = input(">>:").strip()
if len(choice) == 0:
continue
if choice in current_layer:
parent_layers.append(current_layer)

current_layer = current_layer[choice]
elif choice ==‘b‘:
if parent_layers:
current_layer = parent_layers.pop()
else:
print("無此項")

四級菜單實現(Python)

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.