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

Python 基础 - Day 1 Practice Example - Three tier menu

时间:2017-06-27 16:23:32      阅读:232      评论:0      收藏:0      [点我收藏+]

标签:code   logs   bsp   gif   北京   isp   false   lap   占位符   

学函数前比较low的版本

技术分享
data = {
    北京: {
        海淀: {
            五道口: {
                soho: {},
                网易: {},
                Google: {},
            },
            中关村: {
                爱奇艺: {},
                汽车之家: {},
                youku: {},
            },
            上地: {
                baidu: {},
            },
        },
        昌平: {
            沙河: {
                oldboy: {},
                北航: {},
            },
            天通苑: {},
            回龙观: {},
        },
        朝阳: {},
        东城: {},
    },
    上海: {
        "黄浦": {
            人民广场: {
                炸鸡店: {},
            },
        },
        闸北: {
            火车站: {
                携程: {},
            },
        },
        浦东: {},
    },
    山东: {},
}

exit_flag = False

while not exit_flag:
    for i in data:
        print(i)   # 进入死循环

    choice = input("your option >>>:")
    if choice in data:
        while not exit_flag:
            for j in data[choice]:
                print("\t", j)
            choice2 = input(your 2nd option >>>:)
            while not exit_flag:
                for k in data[choice][choice2]:
                    print(\t\t, k)
                choice3 = input(your 3rd option >>>:)
                if choice3 in data[choice][choice2]:
                    for l in data[choice][choice2][choice3]:
                        print(\t\t, l)
                    choice4 = input("final, please input b for exit")
                    if choice4 == b:
                        pass  # 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
View Code

 

Python 基础 - Day 1 Practice Example - Three tier menu

标签:code   logs   bsp   gif   北京   isp   false   lap   占位符   

原文地址:http://www.cnblogs.com/lg100lg100/p/7085605.html

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