Python Lire le fichier texte dans la chaîne
with open('data.txt', 'r') as file:
data = file.read().replace('\n', '')
Blushing Bat
with open('data.txt', 'r') as file:
data = file.read().replace('\n', '')