I want to change a couple of files at one time, iff I can write to all of them. I\'m wondering if I somehow can combine the multiple open calls with the
With python 2.6 It will not work, we have to use below way to open multiple files:
with open('a', 'w') as a: with open('b', 'w') as b: