我有以下内容:
with open("c:\xml1.txt","r") as f1, open('c:\somefile.txt','w') as f2:
这给出了一个语法错误:
with open("c:\xml1.txt","r") as f1, open('c:\somefile.txt','w') as f2:
^
SyntaxError: mismatched input ',' expecting COLON
我正在使用依赖于 jython 2.5.1 的 netbeans python 插件
我已经添加了:
from __future__ import with_statement
但这并没有改变任何东西。
关于做什么的任何建议?
谢谢