摘要: 1. find file: "my.ini" 2.Using ctrl+F find string "datadir" then you can see your local position of databases. 阅读全文
posted @ 2019-12-27 23:57 code_explorer 阅读(86) 评论(0) 推荐(0) 编辑
摘要: Mysql 5.1, 5.5 are more stable than other versions. postgresql has more strict "sql standard " than mysql. A server contains multiple databases, a dat 阅读全文
posted @ 2019-12-27 23:39 code_explorer 阅读(88) 评论(0) 推荐(0) 编辑
摘要: 为matplotlib生成的图添加编辑条,我们导入NavigationToolbar2QT from matplotlib.backends.backend_qt5agg import NavigationToolbar2QT 继承关系: 其中,NavigationToolbar2是实现Naviga 阅读全文
posted @ 2019-11-19 23:43 code_explorer 阅读(1280) 评论(0) 推荐(0) 编辑
摘要: tile(): 复制矩阵的值与维度 文章链接: https://blog.csdn.net/xiahei_d/article/details/52749395 arange(): 生成数列,类似python的range()函数 reshape()方法, 将arrange()生成的数列重塑为矩阵 e. 阅读全文
posted @ 2019-11-13 17:53 code_explorer 阅读(100) 评论(0) 推荐(0) 编辑
摘要: 有外语基础的朋友看这里: matplotlib官方文档 Figure(图像): 组成部分 Figure(图像) 整个图像称为Figure, Figure用于保存返回的Axes(坐标域), 一个Figure可以包含任意数量的Axes. Axes(坐标域) 可以将它理解为一个"统计图", 一个Axes包 阅读全文
posted @ 2019-11-11 22:20 code_explorer 阅读(194) 评论(0) 推荐(0) 编辑
摘要: 使用火狐浏览器,安装扩展组件 Decentraleyes, 完成 原理:由于爆栈本身并没有被墙, 但使用了google的api,而google的api是被墙的。 该组件替换了国内不能访问的api,所以可以更快地访问。 阅读全文
posted @ 2019-09-27 12:13 code_explorer 阅读(273) 评论(0) 推荐(0) 编辑
摘要: 编辑时间: 2019-09-04,22:58:49 算数运算符 '+'、'-'、'*'、'/' :加、减、乘、除 '**':指数运算, ‘//’:整除, ‘%‘:求余数 导入math模块进行数值运算: 比较运算符 逻辑运算符 非 短路与: A and B中, 若操作数A为False,那么操作数B将不 阅读全文
posted @ 2019-09-04 23:00 code_explorer 阅读(488) 评论(0) 推荐(0) 编辑
摘要: 本系列例子使用python3.x, 编辑时间:2019-09-03,23:03:36 python以“对象引用”来存储数据,以对象来表达数据,每个对象都具有身份,对象和值。 实用函数: id(): 查看变量的id地址 type() : 查看对象类型 input(): 获取字符串类型的 用户输入的变量 阅读全文
posted @ 2019-09-03 23:05 code_explorer 阅读(889) 评论(1) 推荐(0) 编辑
摘要: 写入文件时: 一: 由于windows系统默认打开编码格式为gbk, 此时需将打开方式设置为 utf-8 解析文件时: http://jsonlint.com测试json文件是否符合规范 正则表达式: <--点击了解 BeautifulSoup官方文档(支持中文)<--点击了解 BeautifulS 阅读全文
posted @ 2019-05-05 00:41 code_explorer 阅读(259) 评论(0) 推荐(0) 编辑
摘要: 定制Requests 2019-04-06 一. 传递URL参数 自己构建的url中, 数据一般会跟在一个问号后面, 并以键-值的形式放在url中. 在Requests中, 我们可以把这些参数保存在字典中, 用params构建至url中. I.E: key_dict = {'key1': 'valu 阅读全文
posted @ 2019-04-06 11:25 code_explorer 阅读(916) 评论(0) 推荐(0) 编辑