Print Hello World in Python
So, as we discussed earlier Python is one of the easiest programming language. Even if you are new to programming you can learn it in just few months. You also don’t need to have the knowledge about any other programming language before learning it.
Now let’s write our first python program and print Hello World.
print ("Hello World!")
Output
Hello World!
So, this is how simple it is to write code in Python.
Printing Multiple Lines In Python
print ("Hello World!")
print ("I am learning Python with crus4")
print ("Python is easy to learn")
Output
Hello World!
I am Learning Python with crus4
Python is easy to learn
Print Hello World in Python
One thought on “Print Hello World in Python”