5 lines
129 B
Python
5 lines
129 B
Python
#multifilesread1.py
|
|
|
|
with open("1.txt") as file1, open("2.txt") as file2:
|
|
print(file2.readline())
|
|
print(file1.readline()) |