-3

我需要在文本文件中提取列“VON MISES”的值,并希望提取该列名称下方的值。我尝试拆分列但无法弥补结果。我是 python 新手。请帮助我。在此先感谢。我正在复制我必须工作的文本文件部分。我需要最后一列的值作为答案

# open file
f = open ("new.txt","r")

#Read whole file into data
data = f.read()

# Print it
print data
line_number=1
for num,line in enumerate(open("new.txt")):
        if "VON MISES" in line:
            print num+1
f.close()
4

1 回答 1

0

你可以试试熊猫

import pandas as pd
df = pd.read_csv("new.txt", sep=',')
v_m = df['VON MISES']

out_file = open("out.txt", "w")
v_m.to_csv(out_file)
于 2013-04-09T11:18:14.330 回答