What is a correct syntax to output "Hello World" in Python?
1 point
Answers
Answered by
2
Answer:
print('Hello World')
Explanation:
In this program, we have used the built-in print() function to print the string 'Hello World' on our screen.
Similar questions