Answers for "py for line in file"

0

py for line in file

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.
Posted by: Guest on February-19-2022

Python Answers by Framework

Browse Popular Code Answers by Language