Za pomocą metody RSTRIP () do usunięcia znaku nowej linii z łańcucha
# rstrip() method to remove trailing newline character from a string
text= "Welcome to Python Programming \n"
print(text.rstrip())
Gorgeous Gazelle