Python supprimant \ n de la chaîne
line = line.strip('\n')
line = line.strip('\t')
Awful Albatross
line = line.strip('\n')
line = line.strip('\t')
a_string = a_string.rstrip("\n")
mylist = []
# Assuming that you have loaded data into a lines variable.
for line in lines:
mylist.append(line.strip().split('\t')
# strip() method to remove newline characters from a string
text= "\n Welcome to Python Programming \n"
print(text.strip())