Explain how python is interpreted
Explain how python is interpreted.- Python program runs directly from the source code.
- Each time Python programs are executed code is required.
- Python converts source code written by the programmer into intermediate language which is again translated into the native language / machine language that is executed. So Python is an Interpreted language.
- It is processed at runtime by the interpreter.
- The program need not be compiled before its execution.
- It is similar to PERL and PHP.
- Python is also interactive where it can prompt and interact with the interpreter directly to write the programs.
- It supports the object-oriented style of the technique which encapsulates the code within the objects.
|
Dictionary in PythonDictionary in Python - Python's built-in data type is dictionary, which defines one-to-one
relationships between keys and values.......
Global variables in PythonGlobal variables in Python - We can create a config file & store the entire global variable to be shared
across modules or script in it.......