Computer Science, asked by DrSavage, 6 months ago

What is the output of this python program?

print("hello world")​

Answers

Answered by shivakumarjagadish12
3

Answer:

hello world

Explanation:

print outputs the result you input

hope it helped ya!

Answered by anindyaadhikari13
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