摘要: 1.连接模拟器设备 2.查看设备连接状态 3.查看应用包名 4.输出对应带时间的应用日志 阅读全文
posted @ 2019-05-21 14:10 swithin 阅读(185) 评论(1) 推荐(0) 编辑
摘要: Jupyter Notebook是以网页的形式打开,可以在网页页面中直接编写代码和运行代码,代码的运行结果也会直接在代码块下显示的程序。如在编程过程中需要编写说明文档,可在同一个页面中直接编写,便于作及时的说明和解释。 安装后经常遇到启动后浏览器白屏。 解决方法: 卸载之前的jupyter note 阅读全文
posted @ 2019-05-21 09:31 swithin 阅读(804) 评论(0) 推荐(0) 编辑
摘要: import bson import datetime from openpyxl import load_workbook class DoExcel: def __init__(self, file_path, sheet_name): # 初始化文件路径,表名,其他初始化参数根据具体情况提取封装添加 self.file_path = file_path ... 阅读全文
posted @ 2019-05-17 09:52 swithin 阅读(229) 评论(0) 推荐(0) 编辑