5 lines
138 B
Python
5 lines
138 B
Python
#multifilesread2.py
|
|
|
|
with open("1.txt",'r') as file1, open("3.txt",'w') as file2:
|
|
for line in file1.readlines():
|
|
file2.write(line) |