Programme Python pour supprimer les caractères de Newline d'un fichier
with open('file1.txt','r+') as f:
line = f.readlines()
print(line)
[print(l.strip()) for l in line]
Man