fichier = open("data.txt", "r")

for line in fichier:
    print(line)
    
fichier.close()
