Python rappelle une ligne à partir d'un fichier texte
# Read text file line by line
filepath = 'text_file.txt'
with open(filepath) as fp:
line = fp.readline()
cnt = 1
while line:
print("Line {}: {}".format(cnt, line.strip()))
line = fp.readline()
cnt += 1
Hello There