2021-10-28 17:39:37 +05:30

5 lines
98 B
Python

# files/open_with.py
with open('fear.txt') as fh:
for line in fh:
print(line.strip())