Python 3 – Hello World



Python is a high-level and Interpreter based language. Python was mainly developed for emphasis on code readability, and its syntax allows programmers to express concepts in fewer lines of code.

So, without any ado, let’s start writing our first HELLO WORLD program in Python.

# Python program to print Hello World

print("Hello World")

Output:

Hello World

Congratulations on writing your First Python Code.

Now, let’s understand the syntax used in the above code. In the above code, we have used an in-built function print() which has taken a string as parameter. print() method simply prints the given string on the screen.

Last Updated on May 10, 2020 by admin

Leave a Reply

Your email address will not be published. Required fields are marked *

Recommended Blogs