我有以下代码:
inputFile = open('C:/Abaqus_JOBS' + JobDir + '/' + JobName + '-3_4.inp', 'r')
for line in inputFile:
fileData.append([x.strip() for x in line.split(',')])
fel=0
for row,data in enumerate(fileData):
if data[0]=='*Node':
row_nodes = row #number of the row when data='*Node'
if data[0]=='*Element' and fel==0:
row_elements2 = row
fel=1
for row,data in enumerate(fileData[row_nodes + 1:row_elements2]):
nodes.append(data) #data between '*Nodes' and '*Element'
但是,它在外部程序的 python 解释器中运行非常慢(几分钟)(我必须在这里运行脚本,因为我需要访问该程序生成的结果数据库)。我该如何优化它?
编辑:我inputFile
在代码末尾关闭:inputFile.close()