can you open multiple files using the with statement code example
Example: how to open two files together in python
with open("file_1.txt") as f1, open("file_2.txt") as f2:
with open("file_1.txt") as f1, open("file_2.txt") as f2: