Utilisation de la méthode strip () pour supprimer le caractère newline d'une chaîne

# strip() method to remove newline characters from a string
text= "\n Welcome to Python Programming \n"
print(text.strip())
Gorgeous Gazelle