三级菜单 python_python三级菜单
menu = {
'北京':{
'海淀':{
'五道口':{
'soho':{},
'網易':{},
'google':{}
},
'中關村':{
'愛奇藝':{},
'汽車之家':{},
'youku':{},
},
'上地':{
'百度':{},
},
},
'昌平':{
'沙河':{
'老男孩':{},
'北航':{},
},
'天通苑':{},
'回龍觀':{},
},
'朝陽':{},
'東城':{},
},
'上海':{
'閔行':{
"人民廣場":{
'炸雞店':{}
}
},
'閘北':{
'火車戰':{
'攜程':{}
}
},
'浦東':{},
},
'山東':{},
}
二逼青年版:while True:
for key in menu:
print(key)
choice = input(">>>:")
if len(choice) == 0: continue
if choice not in menu:continue
while True:
for key2 in menu[choice]:
print(key2)
choice2 = input(">>>:")
if len(choice2) == 0: continue
if choice2 == "b": break
if choice2 not in menu[choice]: continue
while True:
for key3 in menu[choice][choice2]:
print(key3)
choice3 = input(">>>:")
if len(choice3) == 0: continue
if choice3 == "b": break
if choice3 not in menu[choice][choice2]: continue
while True:
for key4 in menu[choice][choice2][choice3]:
print(key4)
choice4 = input(">>>:")
if len(choice4) == 0: continue
if choice4 == "b": break
if choice4 not in menu[choice][choice2][choice3]: continue
文藝青年版:current_level = menu
last_level = []
while True:
for key in current_level:
print(key)
choice = input(">>>:")
if len(choice) == 0:continue
if choice == "b":
if not last_level : break
current_level = last_level[-1]
last_level.pop()
if choice not in current_level:continue
last_level.append(current_level)
current_level = current_level[choice]
作者:terry
blog:http://www.cnblogs.com/kkterry/
Weibo:http://weibo.com/kkterry
E-mail:doubleginger@163.com
歡迎轉載,還請標明出處!多謝多謝!
本條技術文章來源于互聯網,如果無意侵犯您的權益請點擊此處反饋版權投訴
本文系統來源:php中文網
TAG標簽:python
總結
以上是生活随笔為你收集整理的三级菜单 python_python三级菜单的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 单片机跑马灯程序c语言,用单片机编写几种
- 下一篇: STM32 跑马灯程序设计