码迷,mamicode.com
首页 > 其他好文 > 详细

三级菜单

时间:2020-06-07 09:13:21      阅读:69      评论:0      收藏:0      [点我收藏+]

标签:menu   pen   span   odi   not   pre   coding   continue   style   

# coding:utf-8
menu = {
‘北京‘:{
‘海淀‘:{
‘五道口‘:{
‘soho‘:{},
‘网易‘:{},
‘google‘:{}
},
‘中关村‘:{
‘爱奇艺‘:{},
‘汽车之家‘:{},
‘youku‘:{},
},
‘上地‘:{
‘百度‘:{},
},
},
‘昌平‘:{
‘沙河‘:{
‘老男孩‘:{},
‘北航‘:{},
},
‘天通苑‘:{},
‘回龙观‘:{},
},
‘朝阳‘:{},
‘东城‘:{},
},
‘上海‘:{
‘闵行‘:{
"人民广场":{
‘炸鸡店‘:{}
}
},
‘闸北‘:{
‘火车站‘:{
‘携程‘:{}
}
},
‘浦东‘:{},
},
‘山东‘:{},
}
current_layer = menu
layers = []
while True:
for i in current_layer:
print(i)
choice = input(‘输入>>:‘).strip()
print(‘返回上一层按b,退出按q‘)
if not choice:continue
if choice in current_layer:
layers.append(current_layer)
current_layer = current_layer[choice]
elif choice == ‘b‘:
if len(layers) != 0:
current_layer = layers.pop()
else:
print(‘已经是最后一层了哦!‘)
elif choice == ‘q‘:
exit(‘再见!‘)
else:
print(‘不存在,请重新输入!‘)

三级菜单

标签:menu   pen   span   odi   not   pre   coding   continue   style   

原文地址:https://www.cnblogs.com/wzq1997/p/13058256.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!