02 2021 档案

摘要:# print(result) low = 0 high =10 mid1=low + ((high - low) >> 1) mid2 = (low + high) >> 1 mid3 = (low+high)/2 print(mid1==mid2) 因为其他语言low+high有溢出的风险,所以 阅读全文
posted @ 2021-02-20 11:57 公众号python学习开发 阅读(344) 评论(0) 推荐(0) 编辑
摘要:import pymongo db_configs = { 'type': 'mongo', 'host': '127.0.0.1', 'port': '27017', "user": "", "password": "", 'db_name': 'spider' } class MongoPipe 阅读全文
posted @ 2021-02-18 14:58 公众号python学习开发 阅读(86) 评论(0) 推荐(0) 编辑
摘要:In the context of web scraping, [XPath](http://en.wikipedia.org/wiki/XPath) is a nice tool to have in your belt, as it allows you to write specificati 阅读全文
posted @ 2021-02-08 11:58 公众号python学习开发 阅读(83) 评论(0) 推荐(0) 编辑
摘要:関数:函数 読み込む:读取 サードパーティ製のライブラリ:第三方库的模块 動的にロードされる:被动态加载的。。 初期ロード:初始加载 構文:句法 阅读全文
posted @ 2021-02-04 16:31 公众号python学习开发 阅读(132) 评论(0) 推荐(0) 编辑
摘要:第一步,先查看本机node.js版本: $ node -v 第二步,清除node.js的cache: $ sudo npm cache clean -f 第三步,安装 n 工具,这个工具是专门用来管理node.js版本的,别怀疑这个工具的名字,是他是他就是他,他的名字就是 "n" $ sudo np 阅读全文
posted @ 2021-02-02 20:29 公众号python学习开发 阅读(74) 评论(0) 推荐(0) 编辑