##############################################################################
# Python From Scratch
# Autor: Nilo Ney Coutinho Menezes
# Editora Novatec (c) 2010-2024
# Site: https://pythonfromscratch.com
#
# File: listing\chapter 09\09.02 - Use of with.py
# Description: Use of with
##############################################################################
with open("numbers.txt", "r") as file:
for line in file.readlines():
print(line)