Python Hello World! Code

Topic: Python Hello World Program

Hey Guys, today we are going to start this journey with the basic code of all. Hope you are together with me in this journey. I am starting to code daily one problem of python. As we know practical implementation is always better than theoretical knowledge. So, let's begin.

Title: Python Hello World (Beginner Friendly+ Easy + Code + Output + Online Compiler)


What is this program and why we are going to use it?
This Program consists of String and Print Function. String is a bunch of characters like:
'a' - One Character String
'ab' - Two Character String
"Hello World!"- Multi Character String

So, we can write the string in two formats using " " and ' ' . Both of them are correct.

Second Print Function - It is used to show output at monitor. Like Whatever I write in this function. It will be showcased to the user.

Code:


Online Compiler:



Applications:
1. Showcasing the Texts during the Operation of Input. 
2. Increase the Reliability of the code for example: Asking the user to input some value like some number, name, age etc. As the user who not written the code can know about the input. 
3. Very useful in real world application like form filling, inserting data etc.

Comments