exceptions_using_with.py 75 B

1234
  1. with open("poem.txt") as f:
  2. for line in f:
  3. print(line, end='')