C-15-Q129mediumsingle_mcq
The output of running print('Hello World!') is:
The output of running print('Hello World!') is:
- a'Hello World!'
- bHello World!
- cAn error message
- dNothing at all
ব্যাখ্যা
print() displays the string content without the surrounding quotation marks, so the screen shows just Hello World!. The quotes only mark the string in the code, not in the output.