Python - 从文件中读取第二列

use*_*265 8 python file-io for-loop readfile

我的输入文件有两列.我试图在第二inputdata1.txt个for循环中打印第二列.但我的代码不起作用.有人可以告诉我该怎么办?

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打开文件会自动关闭它.


Jun*_*uxx 8

你可以这样做.Separator是文件用于分隔列的字符,例如制表符或逗号.

for line in open("inputfile.txt"):
    columns = line.split(separator)
    if len(columns) >= 2:
        print columns[1]
Run Code Online (Sandbox Code Playgroud)


Meh*_*len 5

快点'肮脏

如果安装了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功能
  • 如果你正在使用Quick'n dirty方法使用 subprocess.Popen
  • 您可以更改分隔符 getCol('inputdata1.txt', delim=", ")
  • 使用filter删除空值或取消注释pass