我需要在文本文件中提取coloumn“VON MISES”的值,并想要提取coloumn名称下面的值。我尝试拆分列但无法得到结果。我是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()
答案 0 :(得分: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)