0
how to you go down a line without it ending the string automaticly
3 Respuestas
+ 4
If you mean to print without going to a newline, then you just need to change the end argument to a different character(s), such as an empty string or a space etc.
print("this string prints", end=" ")
print("and then this string prints on the same line as above")
+ 2
What do you mean?
+ 1
Thanks