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