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

三级菜单

时间:2019-05-07 13:05:53      阅读:109      评论:0      收藏:0      [点我收藏+]

标签:col   nbsp   google   返回   you   携程   pre   googl   要求   

要求: 

  1. 打印省、市、县三级菜单
  2. 可返回上一级
  3. 可随时退出程序
  4. menu = {
        ‘北京‘:{
            ‘海淀‘:{
                ‘五道口‘:{
                    ‘soho‘:{},
                    ‘网易‘:{},
                    ‘google‘:{}
                },
                ‘中关村‘:{
                    ‘爱奇艺‘:{},
                    ‘汽车之家‘:{},
                    ‘youku‘:{},
                },
                ‘上地‘:{
                    ‘百度‘:{},
                },
            },
            ‘昌平‘:{
                ‘沙河‘:{
                    ‘老男孩‘:{},
                    ‘北航‘:{},
                },
                ‘天通苑‘:{},
                ‘回龙观‘:{},
            },
            ‘朝阳‘:{},
            ‘东城‘:{},
        },
        ‘上海‘:{
            ‘闵行‘:{
                "人民广场":{
                    ‘炸鸡店‘:{}
                }
            },
            ‘闸北‘:{
                ‘火车战‘:{
                    ‘携程‘:{}
                }
            },
            ‘浦东‘:{},
        },
        ‘山东‘:{},
    }
    exit_flag = False
    while not exit_flag:
        for i in menu:
            print(i)
        choice = input("选择进入>>:")
        if choice in menu:
            while not exit_flag:
                for i2 in menu[choice]:
                    print("\t",i2)
                choice2 = input("选择进入,或者按b返回上一层>>:")
                if choice2 in menu[choice]:
                    while not exit_flag:
                        for i3 in menu[choice][choice2]:
                            print("\t\t",i3)
                        choice3 = input("选择进入>>:")
                        if choice3 in menu[choice][choice2]:
                            for i4 in menu[choice][choice2][choice3]:
                                print("\t\t\t",i4)
                            choice4 = input("最后一层,按b返回>>:")
                            if choice4 == "b":
                                pass
                            elif choice4 == "q":
                                exit_flag = True
                        if choice3 == "b":
                            break
                        elif choice3 == "q":
                            exit_flag = True
                if choice2 == "b":
                    break
                elif choice2 == "q":
                    exit_flag = True
    

      

三级菜单

标签:col   nbsp   google   返回   you   携程   pre   googl   要求   

原文地址:https://www.cnblogs.com/zhengqiangchen/p/10824675.html

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