摘要: 备读。http://www.2cto.com/kf/201407/317115.html 阅读全文
posted @ 2016-01-06 07:08 和尚爱吃肉 阅读(136) 评论(0) 推荐(0) 编辑
摘要: 1) readline 每次读一行,返回序列2) readlines 一次全部读出,返回序列3) numpy 的genfromtxt,返回为np的矩阵格式 import numpy as np f=file('sample.txt','r') ll=np.genfrom... 阅读全文
posted @ 2016-01-06 05:55 和尚爱吃肉 阅读(412) 评论(0) 推荐(0) 编辑
摘要: python程序内执行shell命令可以有几种方式,在http://www.cnblogs.com/xuxm2007/archive/2011/01/17/1937220.html 里都有详细介绍。实际操作中经常遇到的情况是如何将变量输入到系统命令中。如下例所示: output='outp... 阅读全文
posted @ 2016-01-06 04:42 和尚爱吃肉 阅读(703) 评论(0) 推荐(0) 编辑