1. Simple and easy to learn:
- Python is a simple programming language. When we read Python program,we can feel like reading english statements.
- The syntaxes are very simple and only 30+ kerywords are available.
- When compared with other languages, we can write programs with very less number of lines. Hence more readability and simplicity.
- We can reduce development and cost of the project.
2. Freeware and Open Source:
- We can use Python software without any licence and it is freeware.
- Its source code is open,so that we can we can customize based on our requirement.
- Eg: Jython is customized version of Python to work with Java Applications.
3.High Level Programming language:
- Python is high level programming language and hence it is programmer friendly language.
- Being a programmer we are not required to concentrate low level activities like memory management and security etc.
4.Platform Independent:
- Once we write a Python program,it can run on any platform without rewriting once again.
- Internally PVM is responsible to convert into machine understandable form.
5.Dynamically Typed:
- In Python we are not required to declare type for variables. Whenever we are assigning the value, based on value, type will be allocated automatically.Hence Python is considered as dynamically typed language.
- But Java, C etc are Statically Typed Languages b'z we have to provide type at the beginning only.
- This dynamic typing nature will provide more flexibility to the programmer.
6.Both Procedure Oriented and Object Oriented:
Python language supports both Procedure oriented (like C, pascal etc) and object oriented (like C++, Java) features. Hence we can get benefits of both like security and reusability etc
7.Extensible:
- We can use other language programs in Python.
- The main advantages of this approach are:
- We can use already existing legacy non-Python code
- We can improve performance of the application
8.Embedded:
We can use Python programs in any other language programs.
i.e we can embedd Python programs anywhere.
Limitations of Python:
- Performance wise not up to the mark because it is interpreted language.
- Not using for mobile Applications.