Files
adii1823 48cef734e0 ch08
2021-10-28 17:39:37 +05:30

8 lines
177 B
Python

# files/read_write.py
with open('fear.txt') as f:
lines = [line.rstrip() for line in f]
with open('fear_copy.txt', 'w') as fw: # w - write
fw.write('\n'.join(lines))