4 odpowiedzi
+ 1
end=' '
print("hello", end=' ')
print("world")
output:
hello world
for i in range(5):
print(I, end=' ')
output:
0 1 2 3 4
+ 1
Thanks a lot guys specially @Joker.
0
try to put """ (three quotes) to open and """" to close the line, doing this, you can put a ENTER in the line to continue on the same line.
0
it's what we are here for 👍