zoukankan      html  css  js  c++  java
  • 三级目录

    #!/usr/bin/env python
    data = {
    '北京':{
    "昌平":{
    "沙河":["oldboy","test"],
    "天通苑":["链家地产","我爱我家"]
    },
    "朝阳":{
    "望京":["奔驰","陌陌"],
    "国贸":{"CICC","HP"},
    "东直门":{"Advent","飞信"},
    },
    "海淀":{},
    },
    '山东':{
    "德州":{},
    "青岛":{},
    "济南":{}
    },
    '广东':{
    "东莞":{},
    "常熟":{},
    "佛山":{},
    },
    }
    exit_flag = False
    while not exit_flag:
    for i in data:
    print(i)
    choice =input('选择进入>>')
    if choice in data:
    while not exit_flag:
    for i2 in data[choice]:
    print(' ',i2)
    choice2 = input('选择进入2>>')
    if choice2 in data[choice]:
    while not exit_flag:
    for i3 in data[choice][choice2]:
    print(" ",i3)
    choice3 = input('选择进入3>>')
    if choice3 in data[choice][choice2]:
    while not exit_flag:
    for i4 in data[choice][choice2][choice3]:
    print(i4)
    choice4 = input('最后一层,按B返回>>')
    if choice4 == 'b':
    break
    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
  • 相关阅读:
    java.util.Properties类
    java中log日志的使用(完全版)
    解读HDFS(转载)
    说明
    定时器中断和串口
    python day3
    python day2 基础总结:列表,元组,字典,集合
    python第二天作业:购物车
    作业总结:
    python第一天作业:用户登陆
  • 原文地址:https://www.cnblogs.com/rongye/p/9905506.html
Copyright © 2011-2022 走看看