摘要: 1. 匹配字符串中的一个百分比数字 import re t = 'yuchen is a very lovely girl. 5.568% company ltd.' match = re.search(r"\d+\.\d*%", t) print(match.group()) 2.匹配小括号()里 阅读全文
posted @ 2018-12-01 13:48 coffee~ 阅读(756) 评论(0) 推荐(0) 编辑
摘要: from decimal import Decimal # .2f设置小数位精确位数, 如下返回2.55 q = 2.551 t = format(Decimal(q), '.2f') #向上取2位小数, 返回2.56 q = 2.551 t = format(Decimal( q + 0.005) 阅读全文
posted @ 2018-12-01 12:55 coffee~ 阅读(916) 评论(0) 推荐(0) 编辑
摘要: length = len(list1) for i in range(0, length): for j in range(i+1, length): if list1[i] == list1[j]: #操作 阅读全文
posted @ 2018-11-30 19:53 coffee~ 阅读(10127) 评论(1) 推荐(1) 编辑
摘要: 系统信息 hdparm -tT /dev/sda 在磁盘上执行测试性读取操作 cat /proc/cpuinfo 显示CPU info的信息 cat /proc/meminfo 校验内存使用 lsusb -tv 显示 USB 设备 关机 (系统的关机、重启以及登出 ) shutdown 关机 reb 阅读全文
posted @ 2018-10-11 21:31 coffee~ 阅读(248) 评论(0) 推荐(0) 编辑
摘要: 1. 在PC端设置农历、天气、中国节假日 (1)添加农历: 在电脑通过浏览器打开google calender页面 https://calendar.google.com 并登录google帐号 设置--添加日历--通过网址添加, 输入农历日历网址http://www.google.com/cale 阅读全文
posted @ 2018-01-29 17:59 coffee~ 阅读(25705) 评论(0) 推荐(1) 编辑
摘要: 1. 在linux服务器安装nose: 运行命令 : easy_install nose 或者使用 pip: 或者使用 pip: pip install nose或者到官网https://pypi.python.org/pypi/nose下载包, Ungzip、untar解压, cd到包所在的新目录 阅读全文
posted @ 2018-01-10 19:01 coffee~ 阅读(778) 评论(0) 推荐(0) 编辑
摘要: python中的staticmethod装饰器(decorator)主要是方便将外部函数集成到类体中, 美化代码结构, 重点在可以不需要类实例化的情况下调用方法 如果去掉staticmethod,在方法中加self也可以通过实例化访问方法也是可以集成代码 1. 不使用staticmethod的代码如 阅读全文
posted @ 2017-12-28 16:18 coffee~ 阅读(1957) 评论(0) 推荐(0) 编辑
摘要: (1)去除了<>,全部改用!= (2)去除``,全部改用repr() (3)关键词加入as 和with,还有True,False,None (4)整型除法返回浮点数,要得到整型结果,请使用// (5)加入nonlocal语句。使用noclocal x可以直接指派外围(非全局)变量 (6)去除prin 阅读全文
posted @ 2017-12-28 15:18 coffee~ 阅读(179) 评论(0) 推荐(0) 编辑
摘要: 1.创建文件 f=open(filenameWithPath,'a') #创建文件 f.close() 2. 文件读取 (1)全部读取 f=open(文件绝对路径,'r') str=f.readlines() #读入全部行的内容,返回字符串 (2)逐行读取 f=open(文件绝对路径,'r') li 阅读全文
posted @ 2017-12-28 15:04 coffee~ 阅读(151) 评论(0) 推荐(0) 编辑
摘要: 1. os.path中的st_ctime、 st_mtime和st_atime python os.stat中 st_ctime 在windows系统可以用来获取文件的创建时间,在linux系统没有创建时间的概念, st_ctime--文件状态修改时间。Time when file status w 阅读全文
posted @ 2017-12-28 14:41 coffee~ 阅读(2682) 评论(0) 推荐(0) 编辑