您的位置:首页 > 编程语言 > Python开发

Python循环三级菜单

2018-04-04 11:25 120 查看

选择城市》选择区》选择区内的公司等

三级菜单循环

# coding=utf-8
# Version:python3.6
# Name:shiwei
data = {
'北京': {
'海淀': {
'五道口': {
'soho': {},
'网易': {},
'google': {},
},
'中关村': {
'爱奇艺': {},
'汽车之家': {},
'youku': {},
},
'上地': {
'百度': {},
}
},
'昌平': {
'沙河': {
'老男孩': {},
'北航': {},
}
},
'朝阳': {},
'东城': {},
},
'上海': {
'宝山': {
'大场': {},
'上海大学': {},
},
'松江': {
'佘山': {},
'欢乐谷': {},
'月亮湖': {},
}
},
'杭州': {}
}

exit_flag = False

while not exit_flag:
for i in data:
print(i)
choice = input('选择进入1>>')
if choice in data:
while not exit_flag:
for i2 in data[choice]:
print('\t', i2)
choice2 = input('选择进入2>>')
if choice2 in data[choice]:
while not exit_flag:
for i3 in data[choice][choice2]:
print('\t\t', i3)
choice3 = input('选择进入3>>')
if choice3 in data[choice][choice2]:
for i4 in data[choice][choice2][choice3]:
print('\t\t\t', i4)
choice4 = input('最后一层, 按b返回>>')
if choice4 == 'b':
pass  # 或者continue
elif choice3 == 'b':
break
elif choice3 == 'q':
exit_flag = True
else:
print('没有下级菜单了!按b 返回上级把!')
continue

elif choice2 == 'b':
break
elif choice2 == 'q':
exit_flag = True
else:
print('没有下级菜单了!按b 返回上级把!')
continue
elif choice == 'q':
exit_flag = True
else:
print('Byebye!')

小程序,可返回重新选择,可添加data。

阅读更多
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: