I have a list of files ['file_a.txt', 'file_b.txt', 'file_c.txt' ....]
I want to read one line from each file and generate a new line by adding them together.
The output should look like:
file_a_line_1 file_b_line_1 file_c_line_1....
file_a_line_2 file_b_line_2 file_c_line_2....
Can zip
be used to do this?