Python – For loop: Syntax Error: mismatched input ” expecting EOF

jythonpython

I'm using jython 2.5.1 and netbeans,

I have the following code:

import csv
import pprint
import os

column=[]
mycsv = csv.reader(open('F:\lia1.csv'))
for row in mycsv:
    text = row[0].strip()

if text.isdigit():
    column.append(text[-4:])


out=' '.join(column)

f2=open('F:\somefile.txt','w')
f1=open("F:\xml1.txt","r") 

for item in out:
    try:
        text = f1.readline()
        text = text.replace("Keys1028","Keys"+str(item))
        f2.write(text)

I have the following error:

 for item in out:
    ^
SyntaxError: mismatched input '' expecting EOF

if I comment out try: I get:

  for item in out:
    ^
SyntaxError: mismatched input '' expecting EOF

How can I fix this?

Best Answer

I think it had to do with nesting of statements.

The error was fixed by:

with open("c:/whatever") as one_file:
    with open("c:/otherlocation") as other_file:
        pass  #  or do things

Please see with keyword and jython 2.5.1

Related Topic