Features of Python Programming:
A Simple language which is easier to learn:
Free and open-source:
Portability:
A Simple language which is easier to learn:
- Python has a very simple and elegant syntax. It's much easier to read and write Python programs compared to other languages like: C++, Java, C#.
Free and open-source:
- You can freely use and distribute Python, even for commercial use
Portability:
- You can move Python programs from one platform to another, and run it without any changes.
Extensible and Embeddable:
- Suppose an application requires high performance. You can easily combine pieces of C/C++ or other languages with Python code.
A high-level, interpreted language:
- Unlike C/C++, you don't have to worry about daunting tasks like memory management, garbage collection and so on.
Large standard libraries to solve common tasks:
- Python has a number of standard libraries which makes life of a programmer much easier since you don't have to write all the code yourself.
Object-oriented:
- Everything in Python is an object. Object oriented programming (OOP) helps you solve a complex problem intuitively.
No comments:
Post a Comment