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有溢出的风险,所以
阅读全文
摘要:import pymongo db_configs = { 'type': 'mongo', 'host': '127.0.0.1', 'port': '27017', "user": "", "password": "", 'db_name': 'spider' } class MongoPipe
阅读全文
摘要: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
阅读全文
摘要:関数:函数 読み込む:读取 サードパーティ製のライブラリ:第三方库的模块 動的にロードされる:被动态加载的。。 初期ロード:初始加载 構文:句法
阅读全文
摘要:第一步,先查看本机node.js版本: $ node -v 第二步,清除node.js的cache: $ sudo npm cache clean -f 第三步,安装 n 工具,这个工具是专门用来管理node.js版本的,别怀疑这个工具的名字,是他是他就是他,他的名字就是 "n" $ sudo np
阅读全文