What does this program print? Pay close attention to spaces.
print("Hello", "World", "!")
The program will print:
Hello World !
In Python, the print
function separates the arguments with a space by default. Therefore, the output consists of "Hello", "World", and "!" separated by spaces.