Hello World Program

Written by

Himani Kohli

Hello World in Python

Hello world is a kick to start the journey in python programming.

”Hello world” proves to be a basic and a small step that would lead to bigger innovations. Before you start your motorcycle, there is a need to install python 3 in which we will be running are code.

If you don’t have a set up you can go through the provided link appropriate for your operating systems.

– Ubuntu

– Windows 10

– Mac OS

The program would be in python 3 as per its new features which are not present in python 2.Thus both are different from each other.

Algorithm

1) Open the software.

2) Write the statement “Hello World!” using print function.

3) “Hello World!” is printed.

Code

print(“Hello World!”) // prints the statement “Hello World!”

Output

Hello World!
Hello World Program