Sunday, April 19, 2020


                     Learn python-chapter-1.
  

Python is a powerful language with combination of performance and features that make python very easy.
It is interpreted, high-level, object oriented language.
It is easy to learn because it use English –like words.
Simple.
Python is simple language.
Versatile-python supports development of wide range of applications including text processors, game, www browsers.
It is free and open source. Anybody can use it without any cost. Change the source code is also admitted.
High level language. Because when writing a python program, programmers needn’t worry about low-level details like memory management. Python will take care about it.

Programs in python run in interactive mode which allows interactive testing and debugging of pieces of code.
Python is a portable language. Program written for one platform can easily run on another platform.
It is object oriented language. It supports concepts like encapsulation, abstraction, inheritance and polymorphism.
Python is an interpreted language. When a python program runs it converts into intermediate byte code and then translated into native language of your computer so that it can be executed.

Python execute dynamically. Program written in python can be copied and used for flexible development of applications.
Programmers can embed python with then their c, c++, COM, Active x, CORBA, and Java programs to give scripting capabilities for users.
Python has a huge library of functions that easily portable across different platforms.
Code written in python is easily to maintain.
 The python language environment is secure from tampering.
Robust python programmers cannot manipulate memory directly. Mo re over errors are raised as exceptions that can be catch and handled by the program code.
Python supports Multithreading that is executing more than one process of a program simultaneously.
Garbage collection.
The python run-time environment handles garbage collection of all python objects.
-Will continue.



















No comments:

Post a Comment