码迷,mamicode.com
首页 > 编程语言 > 详细

Python题目2:多层菜单,进入和退出(字典)

时间:2018-01-13 23:37:18      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:退出   多层   for   进入   highlight   break   body   python   字典   

3级菜单,可进入下一层,可退到上一层

date = {
    "1" : {
        "11" : {
            "111" : ["A","B"],
            "112" : ["C","D"],
        },
        "12" : {
            "121" : ["E","F"],
            "122" : ["G","H"]
        }
    },
    "2" :{},
    "3" :{}
}

exit_flag = False

while not exit_flag:
    for i in date:
        print(i)
    choice = input("选择进入1>>:")
    if choice in date:
        while not exit_flag:
            for i2 in date[choice]:
                print("\t",i2)
            choice2 = input("选择进入2>>:")
            if choice2 in date[choice]:
                while not exit_flag:
                    for i3 in date[choice][choice2]:
                        print("\t\t",i3)
                    choice3 = input("选择进入3>>:")
                    if choice3 in date[choice][choice2]:
                        for i4 in date[choice][choice2][choice3]:
                            print("\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

  

Python题目2:多层菜单,进入和退出(字典)

标签:退出   多层   for   进入   highlight   break   body   python   字典   

原文地址:https://www.cnblogs.com/rouge2017/p/8280689.html

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