当前位置:
首页 > temp > 简明python教程 >
-
Python三级菜单作业实现
数据结构:
1 menu = { 2 '北京':{ 3 '海淀':{ 4 '五道口':{ 5 'soho':{}, 6 '网易':{}, 7 'google':{} 8 }, 9 '中关村':{ 10 '爱奇艺':{}, 11 '汽车之家':{}, 12 'youku':{}, 13 }, 14 '上地':{ 15 '百度':{}, 16 }, 17 }, 18 '昌平':{ 19 '沙河':{ 20 '老男孩':{}, 21 '北航':{}, 22 }, 23 '天通苑':{}, 24 '回龙观':{}, 25 }, 26 '朝阳':{}, 27 '东城':{}, 28 }, 29 '上海':{ 30 '闵行':{ 31 "人民广场":{ 32 '炸鸡店':{} 33 } 34 }, 35 '闸北':{ 36 '火车站':{ 37 '携程':{} 38 } 39 }, 40 '浦东':{}, 41 }, 42 '山东':{}, 43 }
作业需求:
- 可依次选择进入各子菜单
- 可从任意一层往回退到上一层
- 可从任意一层退出程序
- 所需知识点:列表、字典
源代码:
1 msg = { 2 '北京':{ 3 '海淀':{ 4 '五道口':{ 5 'soho':{}, 6 '网易':{}, 7 'google':{} 8 }, 9 '中关村':{ 10 '爱奇艺':{}, 11 '汽车之家':{}, 12 'youku':{}, 13 }, 14 '上地':{ 15 '百度':{}, 16 }, 17 }, 18 '昌平':{ 19 '沙河':{ 20 '老男孩':{}, 21 '北航':{}, 22 }, 23 '天通苑':{}, 24 '回龙观':{}, 25 }, 26 '朝阳':{}, 27 '东城':{}, 28 }, 29 '上海':{ 30 '闵行':{ 31 "人民广场":{ 32 '炸鸡店':{} 33 } 34 }, 35 '闸北':{ 36 '火车站':{ 37 '携程':{} 38 } 39 }, 40 '浦东':{}, 41 }, 42 '山东':{}, 43 } 44 45 tag=True 46 while tag: 47 for name1 in msg.keys(): 48 print(name1) 49 sheng1 = input('1请输入省份>>:').strip() 50 if sheng1 not in msg: 51 print('暂无此省份,持续更新中。。。') 52 continue 53 while tag: 54 for name2 in msg[sheng1]: 55 print('%s' % (name2)) 56 sheng2 = input('2请输入省份>>:').strip() 57 if sheng2 not in msg[sheng1]: 58 print('暂无此省份,持续更新中。。。') 59 user = input('退出菜单“Q”/返回上一层“E”\n继续则输入其他任意字符>>:').strip() 60 if user.lower() == 'q': 61 tag = False 62 break 63 elif user.lower() == 'e': 64 break 65 else: 66 continue 67 while tag: 68 for name3 in msg[sheng1][sheng2]: 69 print('%s' % (name3)) 70 sheng3 = input('3请输入省份>>:').strip() 71 if sheng3 not in msg[sheng1][sheng2]: 72 print('暂无此省份,持续更新中。。。') 73 user = input('退出菜单“Q”/返回上一层“E”\n继续则输入其他任意字符>>:').strip() 74 if user.lower() == 'q': 75 tag = False 76 break 77 if user.lower() == 'e': 78 break 79 else: 80 continue 81 while tag: 82 for name4 in msg[sheng1][sheng2][sheng3]: 83 print('%s' % (name4)) 84 sheng4 = input('4请输入省份>>:').strip() 85 if sheng4 not in msg[sheng1][sheng2][sheng3]: 86 print('暂无此省份,持续更新中。。。') 87 user = input('退出菜单“Q”/返回上一层“E”\n继续则输入其他任意字符>>:').strip() 88 if user.lower() == 'q'
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
SQL Server -- 解决存储过程传入参数作为s
关于JS定时器的整理
JS中使用Promise.all控制所有的异步请求都完
js中字符串的方法
import-local执行流程与node模块路径解析流程
检测数据类型的四种方法
js中数组的方法,32种方法
前端操作方法
数据类型
window.localStorage.setItem 和 localStorage.setIte
如何完美解决前端数字计算精度丢失与数