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

第一章--三级菜单作业

时间:2018-02-26 15:16:08      阅读:214      评论:0      收藏:0      [点我收藏+]

标签:choice   爱奇艺   while   三级   soho   strip   log   google   存在   

#_*_coding:utf-8_*_
menu = {
‘北京‘:{
‘海淀‘:{
‘五道口‘:{
‘soho‘:{},
‘网易‘:{},
‘google‘:{}
},
‘中关村‘:{
‘爱奇艺‘:{},
‘汽车之家‘:{},
‘youku‘:{}
},
‘上地‘:{
‘百度‘:{},

},

},
‘昌平‘:{
‘沙河‘:{
‘老男孩‘:{},
‘北航‘:{},
},

},
‘天通苑‘:{},
‘回龙观‘:{},

},
‘上海‘:{
‘闵行‘:{},
‘闸北‘:{
‘火车站‘:{
‘携程‘:{},

},
}
},
‘浦东‘:{},
},


while True:
for k in menu:
print(k)
choice = input(">:").strip
if not choice:continue
if choice in menu:
while True:
for k in menu[choice]:
print(k)
choice2=input(">>:").strip()
if not choice2: continue
if choice2 in menu[choice]:
while True:

for k in menu[choice][choice2]:
print(k)
choice3 = input(">>>:").strip()
if not choice3:continue
if choice3 in menu[choice][choice2]:
print("go to ,",menu[choice] [choice2] [choice3])
else:
print("节点不存在")


else:
print("节点不存在")






第一章--三级菜单作业

标签:choice   爱奇艺   while   三级   soho   strip   log   google   存在   

原文地址:https://www.cnblogs.com/anzhangjun/p/8472601.html

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