Python Lire le fichier à variable
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', '')
data = open('data.txt').read()