0
How to Print Multiple Strings Using Seperate Print functions in A single line?
There should be No Line Break among strings in Output, (No Concatenation)
1 Réponse
+ 3
a = "ABC"
b = "DEF"
c = "GHI"
print(a, end='')
print(b, end='')
print(c, end='')
print("...")