read file line by line

    0

    271

    Python public recipes

    Open a file using the open function and then reads it line by line until the end of the file

    Shortcut: file.read.lines

    with open(filename, mode="r", encoding="utf-8") as file_handler:
      lines = file_handler.readlines()
      for line in lines:
        print(line)
    Codiga Logo
    Codiga Hub
    • Rulesets
    • Playground
    • Snippets
    • Cookbooks
    Legal
    • Security
    • Privacy Policy
    • Code Privacy
    • Terms of Service
    soc-2 icon

    We are SOC-2 Compliance Certified

    G2 high performer medal

    Codiga – All rights reserved 2022.