上一页 1 ··· 152 153 154 155 156 157 158 159 160 ··· 186 下一页
摘要: n=0,1,2,3, 阅读全文
posted @ 2017-08-28 21:52 papering 阅读(182) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-08-28 17:53 papering 阅读(230) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-08-28 05:31 papering 阅读(153) 评论(0) 推荐(0) 编辑
摘要: 限 阅读全文
posted @ 2017-08-28 05:28 papering 阅读(172) 评论(0) 推荐(0) 编辑
摘要: import matplotlib matplotlib.use('Agg') import numpy as np from numpy import array from matplotlib import pyplot from scipy import integrate import math import time from sys imp... 阅读全文
posted @ 2017-08-28 03:43 papering 阅读(602) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-08-27 19:22 papering 阅读(209) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-08-27 17:28 papering 阅读(112) 评论(0) 推荐(0) 编辑
摘要: import sys import os curPath = os.path.abspath(os.path.dirname(__file__)) rootPath = os.path.split(curPath)[0] sys.path.append(rootPath) from selenium import webdriver from selenium.webdriver.chr... 阅读全文
posted @ 2017-08-27 16:03 papering 阅读(199) 评论(0) 推荐(0) 编辑
摘要: 206. 反转链表 - 力扣(LeetCode) https://leetcode-cn.com/problems/reverse-linked-list/ class Node: def __init__(self, val=None): self.val = val self.next = No 阅读全文
posted @ 2017-08-27 13:11 papering 阅读(223) 评论(0) 推荐(0) 编辑
摘要: 小结: 1、栈内存 为什么快? Due to this nature, the process of storing and retrieving data from the stack is very fast as there is no lookup required, you just st 阅读全文
posted @ 2017-08-26 19:53 papering 阅读(802) 评论(0) 推荐(0) 编辑
摘要: from openpyxl import Workbook import xlrd import time import Levenshtein as Le target_city_list = ['北京市', '上海市', '深圳市', '广州市'] source_name = 'JMTool任务_csv_py_wholeCSV-加百度170826165729' ... 阅读全文
posted @ 2017-08-26 17:09 papering 阅读(431) 评论(0) 推荐(0) 编辑
摘要: time — Time access and conversions — Python 3.8.5 documentation https://docs.python.org/3/library/time.html#time.monotonic PEP 418 -- Add monotonic ti 阅读全文
posted @ 2017-08-25 21:06 papering 阅读(695) 评论(0) 推荐(0) 编辑
摘要: pip install python-Levenshtein 阅读全文
posted @ 2017-08-25 11:08 papering 阅读(248) 评论(0) 推荐(0) 编辑
摘要: diff 阅读全文
posted @ 2017-08-25 08:50 papering 阅读(141) 评论(0) 推荐(0) 编辑
摘要: https://hacks.mozilla.org/2017/08/inside-a-super-fast-css-engine-quantum-css-aka-stylo/?utm_source=dev-newsletter&utm_medium=email&utm_campaign=aug24- 阅读全文
posted @ 2017-08-24 23:41 papering 阅读(176) 评论(0) 推荐(0) 编辑
摘要: a 搜索 复制 阅读全文
posted @ 2017-08-24 21:31 papering 阅读(248) 评论(0) 推荐(0) 编辑
摘要: from bs4 import BeautifulSoup import os filepath = 'D:\\pymine\\clean\\spider_map\\baidu_map_html_firstpage_pc_test\\' pathDir = os.listdir(filepath) name_poi_dic = {} need_todo_request = ['搜索结果'... 阅读全文
posted @ 2017-08-24 21:08 papering 阅读(241) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-08-23 13:33 papering 阅读(717) 评论(0) 推荐(0) 编辑
摘要: 滑轮到页面底部 阅读全文
posted @ 2017-08-19 16:29 papering 阅读(5675) 评论(0) 推荐(0) 编辑
摘要: spider from mobile to mobile to mobile ua 阅读全文
posted @ 2017-08-19 12:30 papering 阅读(934) 评论(0) 推荐(0) 编辑
摘要: import time from selenium import webdriver browser = webdriver.Chrome() wait_time = 1 USER = 'xl.feng' PWD = 'fengxiaole' seed_url = 'http://xx.com/login.jhtml' browser.get(seed_url) # time.sleep... 阅读全文
posted @ 2017-08-16 19:36 papering 阅读(333) 评论(0) 推荐(0) 编辑
摘要: G-->f 阅读全文
posted @ 2017-08-14 19:05 papering 阅读(245) 评论(0) 推荐(0) 编辑
摘要: import random import threading N = 100 res_dic = {} def compute_combination(n, x): numerator = 1 denominator = 1 breaker = n - x for i in range(n, breaker, -1): numerat... 阅读全文
posted @ 2017-08-13 22:18 papering 阅读(256) 评论(0) 推荐(0) 编辑
摘要: 100个人 两个思维切入点 1>做对的题怎么分配 m(x)表示答对x道题的最多人数f(x)表示答对x道题的人数 m(0)=5m(1)=20=>f(0)=0m(2)=m(1)+1=21=>f(1)=f(0)=0 思维模型一把尺子,移动游标 A 79% 合格率至少79% 合格率最多100% 2>做错的题 阅读全文
posted @ 2017-08-13 15:55 papering 阅读(287) 评论(0) 推荐(0) 编辑
摘要: case: 1、 异方差性 (1)调查不同规模公司的利润,发现大公司的利润波动幅度比小公司的利润波动幅度大; (2)分析家庭支出时发现高收入家庭支出变化比低收入家庭支出变化大。在分析家庭支出模型时,我们会发现高收入家庭通常比低收入家庭对某些商品支出有更大的方差; https://baike.baid 阅读全文
posted @ 2017-08-11 11:32 papering 阅读(151) 评论(0) 推荐(0) 编辑
摘要: https://zh.wikipedia.org/wiki/中华人民共和国测绘限制 中国法规要求地图提供商使用一种称为GCJ-02的坐标系统。百度地图另外使用一种BD-09坐标系[12],似乎也是基于GCJ-02[13]。 (禁止)未经批准,在测绘活动中擅自采用国际坐标系统 — 中华人民共和国测绘法 阅读全文
posted @ 2017-08-10 20:13 papering 阅读(1794) 评论(0) 推荐(0) 编辑
摘要: from scipy import integrate 阅读全文
posted @ 2017-08-09 22:11 papering 阅读(286) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-08-09 16:13 papering 阅读(199) 评论(0) 推荐(0) 编辑
摘要: w a b 位置点的互异性不是所放的通信硬件,而是他们的物理实体的区别;不变的是物理实体; 物理实体,指建筑结构、大楼在以银河系为视角下的所处的大环境。 阅读全文
posted @ 2017-08-05 12:26 papering 阅读(149) 评论(0) 推荐(0) 编辑
摘要: w 阅读全文
posted @ 2017-08-04 18:13 papering 阅读(171) 评论(0) 推荐(0) 编辑
摘要: w 阅读全文
posted @ 2017-08-04 14:14 papering 阅读(519) 评论(0) 推荐(0) 编辑
摘要: w 阅读全文
posted @ 2017-08-04 11:00 papering 阅读(156) 评论(0) 推荐(0) 编辑
摘要: 一分钟看懂TCP粘包拆包 https://mp.weixin.qq.com/s/bcwgnL5CGlLMUTxRogbQKQ 翻译 搜索 复制 阅读全文
posted @ 2017-07-31 19:12 papering 阅读(350) 评论(0) 推荐(0) 编辑
摘要: en.wikipedia.org/wiki/Yum_(.rpm) The Yellowdog Updater, Modified (yum) is an open-source command-line package-management utility for computers running 阅读全文
posted @ 2017-07-31 14:01 papering 阅读(380) 评论(0) 推荐(0) 编辑
摘要: w 单调性 二分法 阅读全文
posted @ 2017-07-30 11:41 papering 阅读(327) 评论(0) 推荐(0) 编辑
摘要: w 阅读全文
posted @ 2017-07-26 21:41 papering 阅读(344) 评论(0) 推荐(0) 编辑
摘要: w 阅读全文
posted @ 2017-07-21 20:41 papering 阅读(134) 评论(0) 推荐(0) 编辑
摘要: w 某人第一次使用该app,对该人 阅读全文
posted @ 2017-07-21 09:16 papering 阅读(492) 评论(0) 推荐(0) 编辑
摘要: 16G内存OK 4G内存 no 82000 277186000 34542000 251186000 346186000 34742000 25282000 27842000 25342000 25440000 34640000 34742000 25540000 34842000 25640000 阅读全文
posted @ 2017-07-20 15:02 papering 阅读(453) 评论(0) 推荐(0) 编辑
摘要: python 虚拟机是单线程;当线程执行I/O密集型操作是 单核CPU,不存在“并行”,与语言无关:每个线程运行中,其他线程等待该线程让步 粗粒度的并行 靠 软件,细 硬 阅读全文
posted @ 2017-07-10 22:43 papering 阅读(222) 评论(0) 推荐(0) 编辑
上一页 1 ··· 152 153 154 155 156 157 158 159 160 ··· 186 下一页