Lev*_*von 12
with open('inputdata1.txt') as inf:
for line in inf:
parts = line.split() # split line into parts
if len(parts) > 1: # if at least 2 parts/columns
print parts[1] # print column 2
Run Code Online (Sandbox Code Playgroud)
这假设列由空格分隔.
函数split()可以指定不同的分隔符.例如,如果用逗号分隔列,则在上面的代码中,使用line.split(',').
注意:完成后,或者如果遇到异常,使用with打开文件会自动关闭它.
你可以这样做.Separator是文件用于分隔列的字符,例如制表符或逗号.
for line in open("inputfile.txt"):
columns = line.split(separator)
if len(columns) >= 2:
print columns[1]
Run Code Online (Sandbox Code Playgroud)
快点'肮脏
如果安装了AWK:
# $2 for the second column
os.system("awk '{print $2}' inputdata1.txt")
Run Code Online (Sandbox Code Playgroud)
使用课程
上课:
class getCol:
matrix = []
def __init__(self, file, delim=" "):
with open(file, 'rU') as f:
getCol.matrix = [filter(None, l.split(delim)) for l in f]
def __getitem__ (self, key):
column = []
for row in getCol.matrix:
try:
column.append(row[key])
except IndexError:
# pass
column.append("")
return column
Run Code Online (Sandbox Code Playgroud)
如果inputdata1.txt看起来像:
hel lo wor ld wor ld hel lo
你会得到这个:
print getCol('inputdata1.txt')[1]
#['lo', 'ld']
Run Code Online (Sandbox Code Playgroud)
补充说明
pyawk更多awk功能subprocess.PopengetCol('inputdata1.txt', delim=", ")filter删除空值或取消注释pass