Python - Tutorial

Python - Tutorial


Previous Page

Python is a widely used high level, interpreted and interactive programming language. It was first developed in 1991 by Guido Van Rossum and designed with the philosophy of code readability which enables programmers to express ideas and logic in fewer lines of code. It is used for web development (server-side), system scripting, software development, data handling and performing complex mathematical operations.

About Tutorial

This tutorial is intended for software programmers interested in studying basic and advanced concepts of Python. This tutorial covers all topics of Python which includes data types, operators, strings, control statements, lists, tuples, sets, dictionary, lambda, functions, classes, object-oriented programming, constructor, destructor, inheritance, exception handling & File IO. Few common Python Libraries (NumPy, SciPy, Matplotlib, IPython and Panda) are also discussed. We believe in learning by examples, therefore, each topic is explained with lots of examples that makes you learn Python in a very easy way. One of the classical example of "Hello World!" is mentioned below for the illustration purpose.


# Hello World! Example
print('Hello World!.')

Output

Hello World!.

Prerequisite

A prior exposure of any programming language would be an added advantage while following this tutorial but it is designed in such a way that anyone can start from scratch.


Previous Page