摘要: 子网掩码与子网划分: 子网掩码:https://baike.baidu.com/item/%E5%AD%90%E7%BD%91%E6%8E%A9%E7%A0%81/100207?fr=aladdin 子网划分:https://baike.baidu.com/item/%E5%AD%90%E7%BD% 阅读全文
posted @ 2020-03-31 23:40 鱼虫光 阅读(147) 评论(0) 推荐(0) 编辑
摘要: request form data 和 payload: https://www.cnblogs.com/tugenhua0707/p/8975615.html scrapy 发送request payload请求: https://www.cnblogs.com/liangmingshen/p/1 阅读全文
posted @ 2020-03-31 23:38 鱼虫光 阅读(84) 评论(0) 推荐(0) 编辑
摘要: pycharm快捷键: https://blog.csdn.net/weixin_37292229/article/details/81737194,移动到行首尾:fn+home/end pycharm设置模板: https://jingyan.baidu.com/article/29697b91e 阅读全文
posted @ 2020-03-31 23:34 鱼虫光 阅读(104) 评论(0) 推荐(0) 编辑
摘要: 常见数据结构 线性结构:list/tuple,array/collections.namedtuple 链式结构: ,collections.deque(双端队列)- 字典结构:dict,collections.Counter/OrderedDict 集合结构:set/frozenset, 排序算法 阅读全文
posted @ 2020-03-31 23:14 鱼虫光 阅读(328) 评论(0) 推荐(0) 编辑
摘要: mysql行转列,列转行: https://blog.csdn.net/lilong329329/article/details/81664451 mysql交集并集差集: https://blog.csdn.net/shuixiou1/article/details/85988924 数据库三范式 阅读全文
posted @ 2020-03-31 23:06 鱼虫光 阅读(123) 评论(0) 推荐(0) 编辑
摘要: 1、字符函数 concat 拼接: concat(str1, '', str2) 将str1与str2两个字段用''拼接在一起 substr 截取子串: substr('hahaha',3) = 'haha' substr('hahah',1,4) = 'haha' 4为长度 upper 转换成大写 阅读全文
posted @ 2020-03-31 22:49 鱼虫光 阅读(232) 评论(0) 推荐(0) 编辑