with open('file1.txt', 'r', encoding='utf-8') as x, open('file2.txt', 'r', encoding='utf-8') as y:
My code is in the same directory as the files. How come I am getting this error?
with open('file1.txt', 'r', encoding='utf-8') as x, open('file2.txt', 'r', encoding='utf-8') as y:
My code is in the same directory as the files. How come I am getting this error?