end` parameter of the `print()` function. By default, the `end` parameter value is `\n`, which causes a newline to be printed after the output. We can set the `end` parameter to an empty string to print the output without a newline.print("Hello", end='')
print("World", end='')HelloWorld