Features Of Python and Limitations
Python for Beginners and professionals |
Following are the various features of Python
1.Simple and easy to learn:
- Python is most easiest language in the world. it just like a learning english statements.
2.It is Open Source and Freeware:
- Python is open source like Linux so we can customize it as per our need and introduce our own python ex.myPython. Pthon is a freeware it means we are no need to pay single rupee.
3.HighLevel Language:
- Python is a high level language , it means it is human readable language like c and c++ java.
4.Platform Independent:
-Python is a platform independent language , it means write once and run anywhere, because it is interpreted language.
5.Portability
:- Python is portable , Moving one platform to other very easy , no need to make changes in code. ex like Mobile Portability - without changing mobile number we can change our service provider.
6.Dynamically Typed:
In Python no need to declare data type , whatever value we provide dynamically it set datatype
var x=10 - in this case python uses int data type.
var x=10.10 - in this case python uses float data type
var x="raju" - in this case python uses String data type
7.Both Object and Procedural Oriented :
In Python we can write a code in both ways Object oriented as well as Procedural oriented.
8.Interpreted language :
Python is a interpreted language. no need to compile , we can directly run and see the output.
In case any Syntax error in our program then interpreter itself tell us.
9.Extensible:
Comments
Post a Comment