if not os.path.exists(txt_fn):
print 'text file {} does not exists'.format(txt_fn)
continue
错误:
print 'text file {} does not exists'.format(txt_fn)
^
SyntaxError: invalid syntax
我目前正在运行python 2.7,所以最有可能的问题是我可以想到与版本不一致,因为语法可能在python 3.0中不受支持但无法找到证据或修复它。