2. Let’s get started with Python – “Hello World!”

We will learn how to print “Hello World!” or other statement in Python, it is too easy🙌.

Open IDLE and Type

Output You will Get

Congratulation!

You have just created your first program.
Here we use “print()” function to print “Hello World!” statement by writing text in double-quotes(or you can also use single quote). Below is one another example

Example:

>>> print("Let's start learning, it's very easy..!")


Output:

 

Let's start learning, it's very easy..!

We have done it in interactive mode, we will learn more about Python in upcoming tutorial blogs.

 

Comments

Chiikoo

“Hello World” in any programming language is just like A, B, C, D……!
If we don’t learn this, we will never be successful

Leave a Reply