What Are the Feature of Python
What Are the Feature of Python
**FEATURES-
It is simple and easy to learn and understand with very limited syntax which feels
like reading simple english.
3.IT IS PORTABLE-
Python is portable in the sense that the same code can be used on different
platforms. For instance suppose yi=ou write a python code on a Mac the same can be
run on Windows and Linux later, we don't have to change it, i.e we don't have to
write programs multiple times .
One of the critical feature of Python is that it supports both OBJECT-ORIENTED and
PROCEDURE ORINTED PROGRAMMING. A programming language is OBJECT- ORIENTED when it
focuses on design around data and objects, rather than functions and logics. On The
Contrary a language is PROCEDURE-ORIENTED if it focuses more on functions. But
python supports both of the programmings.
5.EXTENSIBE-
6.IT IS INTERPRETED-
7.DYNAMICALLY TYPED-
Many programming languages need to declare the type of variable before runtime.
With python the type of variable can be decided during runtime. This makes python a
dynamically typed language.