Python - Context Managers
Identify the error in this code:
with open('file1.txt') as f1, open('file2.txt') as f2
data1 = f1.read()
data2 = f2.read()