0
Why, when trying to output a phrase from functions in the "print", it is output from a new line?¿
When you try to output a phrase from a function through the "print" it is displayed in this line, how can I fix this in this code https://code.sololearn.com/c6Dl3V5RBZwV/?ref=app
1 Réponse
+ 1
print automatically adds new line after the text you print
to avoid this do
print(phrase, end="")