I am trying to use Python to edit Abaqus input files, and I need to find which lines have certain headers (e.g. "*Nodes," "*Elements"). I have code as follows that works correctly:
headerline = 0
for line in input.readlines():
if line.lower().startswith('*node'):
break
headerline = headerline + 1
print(headerline)
This prints the correct value, which in this case is 8. However, if I run this back to back, or try to search for another header, it always prints zero for the next header.
headerline = 0
for line in input.readlines():
if line.lower().startswith('*node'):
break
headerline = headerline + 1
print(headerline)
headerline = 0
for line in input.readlines():
if line.lower().startswith('*node'):
break
headerline = headerline + 1
print(headerline)
headerline = 0
for line in input.readlines():
if line.lower().startswith('*node'):
break
headerline = headerline + 1
print(headerline)
headerline2 = 0
for line in input.readlines():
if line.lower().startswith('*element'):
break
headerline2 = headerline2 + 1
print(headerline2)
Both of those examples print out the correct value for the first headerline, but then give 0 for the next one, even if I'm literally doing the exact same thing.
What am I missing here that is permanently setting it to zero?
You should close the file if you want to use readlines() again.