可能重复:
Python: open multiple files using “with open”?
Does, With open() not works with python 2.6
我已经看到其他答案可以帮助我解决这个问题。 但我似乎无法获得任何提供的解决方案! 以下是我的代码的一部分:
with open('Levels.dat', 'w') as l, open('Names.dat', 'w') as n:
我收到了这个错误:
with open('Levels.dat', 'w') as l, open('Names.dat', 'w') as n:
^
SyntaxError: invalid syntax
我该如何解决这个问题?