上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 38 下一页
摘要: import time import functools def clock(func): @functools.wraps(func)#还原被装饰函数的__name__和__doc__属性 def clocked(*args,**kwargs):#支持关键字参数 t0 = time.perf_counter() result = func(*a... 阅读全文
posted @ 2018-01-22 15:50 Erick-LONG 阅读(267) 评论(0) 推荐(0) 编辑
摘要: import time import functools def clock(func): @functools.wraps(func)#还原被装饰函数的__name__和__doc__属性 def clocked(*args,**kwargs):#支持关键字参数 t0 = time.perf_counter() result = func(*a... 阅读全文
posted @ 2018-01-22 15:23 Erick-LONG 阅读(383) 评论(0) 推荐(0) 编辑
摘要: class Averager1(): '''计算移动平均值的类第一种写法''' def __init__(self): self.series = [] def __call__(self,new_value): self.series.append(new_value) total = sum(self.seri... 阅读全文
posted @ 2018-01-22 13:36 Erick-LONG 阅读(453) 评论(0) 推荐(0) 编辑
摘要: >>> import struct >>> fmt = '>> with open('filter.gif', 'rb') as fp: ... img = memoryview(fp.read()) # ➋ ... >>> header = img[:10] # ➌ >>> bytes(header) # ➍ b'GIF89a+\x02\xe6\x00' >>> struct.unpack... 阅读全文
posted @ 2018-01-19 16:05 Erick-LONG 阅读(313) 评论(0) 推荐(0) 编辑
摘要: import requests import re import pandas as pd def get_all_date_url(): all_url=[] for i in range(61): url = 'http://club.xywy.com/keshi/{}.html'.format(str(i+1)) res = request... 阅读全文
posted @ 2018-01-18 18:51 Erick-LONG 阅读(552) 评论(0) 推荐(0) 编辑
摘要: 不可变映射类型 阅读全文
posted @ 2018-01-15 16:11 Erick-LONG 阅读(190) 评论(0) 推荐(0) 编辑
摘要: #字典推倒 dial_codes = [(86,'china'),(91,'india'),(1,'us'),(62,'indos'),(55,'brazil'),(92,'pakitan'),(7,'russia')] country_code = {country:code for code,country in dial_codes} # 字典推导式 print(country_code... 阅读全文
posted @ 2018-01-12 18:10 Erick-LONG 阅读(241) 评论(0) 推荐(0) 编辑
摘要: from collections import deque dq = deque(range(10),maxlen=10) dq.rotate(3)#队列旋转操作接受一个参数N,让N>0时,队列的最右边N个元素会被移动到队列最左边,反之会移到队列最右边 dq.appendleft(-1)#头部添加 dq.extend([11,22,33])#尾部添加 dq.extendleft([10,20... 阅读全文
posted @ 2018-01-12 16:40 Erick-LONG 阅读(317) 评论(0) 推荐(0) 编辑
摘要: 先说明的是,使用这个模块的函数前先确保操作的列表是已排序的。 先看看 insort 函数: 其插入的结果是不会影响原有的排序。 再看看 bisect 函数: 其目的在于查找该数值将会插入的位置并返回,而不会插入。 接着看 bisect_left 和 bisect_right 函数,该函数用入处理将会 阅读全文
posted @ 2018-01-11 22:08 Erick-LONG 阅读(224) 评论(0) 推荐(0) 编辑
摘要: from array import array from random floats = array('d',random((for i in range(10**7)) fp = open('floats.bin','wb') floats.tofile(fp) fp.close() floats2 = array('d') fp1 = open('floats.bin','rb') f... 阅读全文
posted @ 2018-01-11 22:03 Erick-LONG 阅读(931) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 38 下一页