摘要: https://www.jb51.net/article/109884.htm 阅读全文
posted @ 2018-09-07 13:29 shmily3929 阅读(325) 评论(0) 推荐(0) 编辑
摘要: https://www.landui.com/help/show-7210 阅读全文
posted @ 2018-09-07 10:23 shmily3929 阅读(507) 评论(0) 推荐(0) 编辑
摘要: set character_set_results=utf8; 阅读全文
posted @ 2018-08-29 17:17 shmily3929 阅读(123) 评论(0) 推荐(0) 编辑
摘要: 1. 安装包 2.启动程序 3.获取html格式的报告文件 4.创建配置文件 .coveragerc 阅读全文
posted @ 2018-08-29 10:32 shmily3929 阅读(808) 评论(0) 推荐(0) 编辑
摘要: mongo https://www.cnblogs.com/layezi/p/7290082.html 阅读全文
posted @ 2018-08-21 15:02 shmily3929 阅读(83) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/paladinzxl/p/6919049.html 原文链接:https://www.cnblogs.com/paladinzxl/p/6919049.html 阅读全文
posted @ 2018-08-21 11:21 shmily3929 阅读(354) 评论(0) 推荐(0) 编辑
摘要: https://wenda.so.com/q/1523455238213064 #公式 IF(ISODD(ROW()),OFFSET($B$1,INT((ROW(A1)-1)/2),),OFFSET($A$1,INT((ROW(A1)-1)/2),)) 阅读全文
posted @ 2018-07-19 10:53 shmily3929 阅读(204) 评论(0) 推荐(0) 编辑
摘要: 方法一: pip3 install python-geohash 方法二: 1.保证 pip3 install geohash 包 2. 进入包的下载目录 /usr/local/lib/python3.5/dist-packages 3.mv Geohash geohash 4.cd geohash 阅读全文
posted @ 2018-06-30 15:28 shmily3929 阅读(3734) 评论(0) 推荐(0) 编辑
摘要: Unknown column '********' in 'field list、 错误原因: 数据库没有创建表 阅读全文
posted @ 2018-06-05 20:28 shmily3929 阅读(132) 评论(0) 推荐(0) 编辑
摘要: from io import StringIO a = StringIO.StringIO('title') a.write('content1\n') a.write('content2') a.seek(0) #必须指定文件指针位置到文件开头,否则无法读出数据 print a.read() a.close() #必须和文件一样关闭 mport String... 阅读全文
posted @ 2018-05-30 16:00 shmily3929 阅读(3453) 评论(0) 推荐(1) 编辑