Introduction to Python.

What is python?

Python is an object-oriented programming language created by Guido Rossum in 1998. If you just beginning your programming career, python suits you best. With python you can do everything from GUI developement, web application, Machine learning, IOT, Game Developement etc. so it is general purpose high level programming language. It is very easy language,it is good for beginners. It is case sensitive language. Python is Dynamically Typed, Write less code do more.

Introduction

Easy to Learn and Use

Python is easy to use and learn, it is user friendly and high level programming language.

Expressive language

Pyton language is more expressive means that is more understand and readable.

Unique style

Python is an interpreted language i.e interpreter execute the code line by line at a time . This makes debugging easy and thus suitable for beginners.

Cross Platform Language

Python can run equally on different platform such as windows, Linux, unix and Macintosh etc. so we can say that python is a portable language.

Object-Oriented language

Python support object-oriented language and concepts of classes and objects come into existance.

GUI Programming Support

Graphical User Interface can be developed using python.

History of Python

The implementation of python was started in the December 1989 by Guido Van Rossum at CWI in Netherland. In Feburary1991 Van Rossum publised the code (labered version 0.9.0) to all sucesss. In 1994 python 1.0 was relased with new feature like: Lamda, Map, Filter and reduced.Python 2.0 added new features like: List, comprehensions, grabag collection system. In December 3,2008 Python 3.0 also called "py3k" was relased. It was designed to rectify fundamental flow of the language.

Python Version

Lets starts off by looking at python history. Python was developed at a time when many other dynamic and open-source programming language like TC1, Perl, Ruby etc.

python 1.0

In january 1994 the first version of Python was relased. This version 1 includes the major new features like the functional programming tools filters reduced map and lamda.

Python 2.0

After six and a half years later python 2.0 was introduce in october 2000. In this relases a full garbag collection, list comprehensions were includes and it also support unicode.

Python3.0

Then after 8 year the next major relase was made. This release was python 3.0 also known as "py 3K" or "python 3000".

Characheristics of python language are

> Interactive > High Level Language > Interpreted > Object Oriented > Modular > Portable > Dynamically > Extensible

Advantages of Python

.Easy to learn .Simple .Free and open source .Extensive support Libraries .cross platform (can use in D/W platform) .Less Coding

Comments

Popular posts from this blog

Decision Making Statement.