7 lines
140 B
Python
7 lines
140 B
Python
|
|
infile = open('input.txt', 'r')
|
||
|
|
outfile = open('output.txt', 'w')
|
||
|
|
for line in infile:
|
||
|
|
outfile.write(line)
|
||
|
|
outfile.close()
|
||
|
|
infile.close()
|