What is Python ?
- Python is an interpreted, object oriented, high level programming language.
- It was created by Guido van Rossum.
- He started the developing the language in the late 1980s, and its first version was released in 1991.
Python is mainly used for :
- Web development
- Data analysis
- Machine learning
- Automation
- Software development
Features of python:
Readable and Simple Syntax : Python syntax is designed to be easy to read and write, making the code are more understandable.
Interpreted Language : Python code is executed in line by line , which helps in debugging and testing.
Dynamically Typed : Variable in python do not require explicit declaration of their data types.
Object Oriented : Python supports object oriented programming paradigms, allowing for encapsulation, inheritance and polymorphism.
Extensive Standard Library : Python has a large standard library with many build in modules to help with different task like handling data , file or web development.
0 Comments