Q. Which of the following is the correct way to print 'Hello World' in Python?
β
Correct Answer: (B)
print('Hello World')
Explanation: In Python, the print() function is used to display output. Other options are from different languages.