Python - Context Managers
What will be the output of this code snippet?
with open('test1.txt', 'w') as file1, open('test2.txt', 'w') as file2:
file1.write('Data1')
file2.write('Data2')
print(file1.closed, file2.closed)