0
The opposite of new line
What if I printed two times and I want the second print to be in the row of the first one? without using the same print()
1 Odpowiedź
+ 1
print("Hello", end=' ')
print ("World!")
Hello World!
What if I printed two times and I want the second print to be in the row of the first one? without using the same print()