Header Ads

Write a program that prints ‘Hello World’ to the screen.


First Code written in any programming language is 'Hello World' Program. Lets start with a 'Hello World' Program.
I am writing this program in Python

Code :

# Hello World,

print("Hello World")

print() is used to print a String in Python. String is written in double or single quotes.

Statements with # is comments, they are programmer references. Comment has no meaning to the interpreter.

Output :
Hello World

Post a Comment

6 Comments

Ask Your Queries in the comments