3 Features of Python
3 Features of Python
Execution Phase:
• The PVM reads Line by Line of Byte Code and
converted into Machine Understandable Code(Binary
Code) and it is read by OS & Processer and gives
result.
• Hence in Python Execution Environment, Compilation
Process and Execution is performing Line by Line and
Python is one of the Interpreted Programming.
7 High Level
• Even though we represent the data in the
form of Binary, Octal and Hexa Decimal
Format, at output stage we are getting the
results in high level understandable format.
8 Robust (Strong)
• Python is one of the Robust(Strong), because
of a Programming feature called “Exception
Handling”.
• Runtime errors of a programs are called
Exceptions.
• Exceptions always gives Technical Error
Messages, which are understandable by
Programmers but not by applications users.
• The process of converting Technical Error
Messages into User-Friendly error messages
is called Exception Handling.
9 Extensible and Embedded
• Since Python Programming Provides its services
(Programming Segments / snippets) to other
languages for fulfilling its requirements easily.
• Ex: C Programs can call the coding segments of
PYTHON.