Exercise: Context manager
Create a few CSV file likes these:
a11,a12
a21,a22
b13,b14
b23,b24
c15,c16
c25,c26
Merge them horizontally to get this:
a11,a12,b13,b14,c15,c16
a21,a22,b23,b24,c25,c26
- Do it without your own context manager
- Create a context manager called myopen that accepts N filenames. It opens the first one to write and the other N-1 to read
with myopen(outfile, infile1, infile2, infile3) as out, ins:
...