What is the output of this python program?
print("hello world")
Answers
Answered by
3
Answer:
hello world
Explanation:
print outputs the result you input
hope it helped ya!
Answered by
2
Question:-
Write the output of the following code in Python.
Solution:-
Given code,
print("hello world")
The output will be,
Hello World.
The print statement is used to display text on the screen.
Similar questions