0
How can we get successive statements in a single line of output
Like print("ABC") print("DEF") output desired ABCDEF
2 Réponses
+ 8
Rajat Srivastava
Do like this way.
print("ABC", end="")
print("DEF")
Like print("ABC") print("DEF") output desired ABCDEF