python基础学习之城市三级菜单(3level_meums)应用实例

初级版:

! 代码的解释器,不能放在for里面

 

data = {
    '北京':{
        "昌平":{
            "沙河":["oldboy","test"],
            "天通苑":["链家地产","我爱我家"]
        },
        "朝阳":{
            "望京":["奔驰","陌陌"],
            "国贸":{"CICC","HP"},
            "东直门":["Advent","飞信"]
        },
        "海淀":{},
    },
    '山东':{
        "德州":{},
        "青岛":{},
        "济南":{}
    },
    '广东':{
        "东莞":{},
        "常熟":{},
        "佛山":{},
    },
}
exit_flag = False

while not exit_flag:
#while True:
    for i in data:
        print(i)

    choice = input ("选择进入1>>:")
    if choice in data:         #判断输入的是不是在里面
      # while True:             #进入下一层
        while not exit_flag:
            for i2 in data[choice]:    #循环打印第二层
                print("\t",i2)
            choice2 = input("选择进入2>>:")
            if  choice2  in data[choice]:    #代码的解释器,不能放在for里面
                   # while True:
                   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",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

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值