Python - how to open text file and read line by line

Python - how to open text file and read line by line

Hi,

how to cycle a text file in a python - I need to read the file and then iterate line by line and print the contents.

REPLY


Hi,

here is one way to go through the python of the whole text file of the line after the line with the while loop:


file = open("file.txt", "r")
while True:
line = file.readline()
if not line :
break;
print(line.strip())
file.close()

Komentáře

Vaše reakce na Python - jak otevřít textový soubor a číst řádku po řádce (open file & read)

Související obsah

programovani

php

python

loop

Reference

Podívejte se na naše reference

Prohlédnout

Aplikace

Podívejte se na naše aplikace

Prohlédnout

Co umíme?

Podívejte se co umíme

Prohlédnout

Co umíme?

Vytváříme sofistikované aplikace pro náročné

Od webových aplikací přes android až po převodové můstky či složité informační systémy.

Podívejte se k nám

Máte ještě čas? Podívejte se na další rubriky

Tento web používá soubory cookie. Dalším procházením tohoto webu vyjadřujete souhlas s jejich používáním.. Více informací zde.