0
Continuous output without newline character ...
The code: j=0 while j<5: print(j) This prints the value of j then a newline character. Is there a way to not print the newline character?
1 ответ
+ 4
print(j, end="")
By default, end is equal to "/n", which is the newline character, so you just have to change it to an empty string