Write a program in python to print "hello world"
Answers
Answered by
2
Python program for the above question :
Output :
hello world
Explanation:
print("hello world") #print statement which print the hello.
Code explanation :
- The above code is in python language which prints the message which is stated by the above question to print.
- It will print the hello world because the print function is used to print that message which is defined in the quotes in the function argument.
- The syntax to print the message with the help of print function is "print("message")".
Learn More :
- Python : https://brainly.in/question/1728872
Similar questions