Let’s Begin with Python Programming language

Python is a well known programming language and it could be used for many types of applications. It was made by Guido van Rossum, and discharged in 1991.

It works on all types of platforms(like Windows, Mac, Linux etc.). It uses very simple syntax like English language. Developer can write code in many ways like procedural, object-oriented and functional etc. It has very large supportive community.

Let’s start with Installation.

Lets start with ‘Hello World!’ example

We start with simple “Hello World!” example.

Open command line and write py:

E:\python>py

then you can see screen like below

E:\python>py
Python 3.8.2 (tags/v3.8.2:7b3ab59, Feb 25 2020, 23:03:10) [MSC v.1916 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>>

Here, you can write any script. Let’s start with “Hello World!”

E:\python>py
Python 3.8.2 (tags/v3.8.2:7b3ab59, Feb 25 2020, 23:03:10) [MSC v.1916 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> print("Hello World!");

I gives output “Hello World!”.

E:\python>py
Python 3.8.2 (tags/v3.8.2:7b3ab59, Feb 25 2020, 23:03:10) [MSC v.1916 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> print("Hello World!")
Hello World!