Introduction to Python

Introduction to Python

Introduction to Python – Python is a general-purpose, high-level, interpreted and dynamic programming language that focuses on code reusability. Size of Python code is lot less than the other programming languages. It was founded by developer Guido Van Rossum in the year 1991. It is used for data handling, web-development (server-side), system scripting, software development, and performing complex mathematical operations. Some of the important features of Python are provided below:

 

 

Interactive Language – Python provides support for command line shell which outputs each statement while keeping previously executed statements in active memory. The interpreter is fed the new line which is examined both in parts and in whole.

 

Interpreted Language – Python language is interpreted. It executes code line by line and if any error arises, stops the program from running immediately and helps in easy debugging and learning.

 

Integrated Language – Python programs can be well adapted to work with other programming languages like Java, C++, etc and thus can be easily integrated.

 

Open-Source Language – Python is an open-source language and is therefore easily available, usable and distributable, even for commercial use. People usually programmers and developers can provide their insights and add libraries in it because of the language being easily available and open-source.

 

Modular Language – Python programs can be logically organized into a file which can be further imported in another python code. It has a number of built-in modules for various purposes.

 

Dynamic Language – Python language is dynamic. Python allows objects and functions to be changed by the user at run-time.

 

Object-Oriented Language – Everything in Python is an object and it heavily supports object-oriented paradigm.

 

Portable Language – Python code is not fixed to a particular operating system. It can be interpreted on various operating systems including Mac OS, UNIX-based systems, and various versions of Windows.

 

High-Level Language – Python programs are developed in a user-friendly way and are high-level.

 

Extensible in C++ and C – Python code can be used with codes of languages like C and C++ which enables a programmer to incorporate some scripting in them.

 

Extensive Library Support – Python standard library is very huge and has a number of functions and variables.

Share this post

24 thoughts on “Introduction to Python

Leave a Reply

Your email address will not be published. Required fields are marked *