py pour la ligne dans le fichier
SAMPLE.TXT
This is
an existing file.
with open("sample.txt", "r") as a_file:
for line in a_file:
stripped_line = line.strip()
print(stripped_line)
>>> This is
>>> an existing file.
Somebody32x2