我需要在文本文件中提取列“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()