fout = open( 'tf2 file test.txt', 'r' )
fout.seek(0)
items = []
for index, line in enumerate( fout.readlines( ) ):
val = line.split('=').strip()
items.append(val)
for item in items:
print item
For some reason it's telling me that strip is undefined?