How python is interpreted?
Answer / Rani Katare
Python is an interpreted language, which means that the code is not directly compiled into machine code before it's executed. Instead, Python code is read and translated (interpreted) on-the-fly by the Python interpreter.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is meta class in python?
What is python orm?
How is python an interpreted language?
What is the difference between `del` and `remove()` in Python?
Are there any interfaces to database packages in python?
How do you debug a program in python? Answer in brief.
Is python numpy better than lists?
What is type() and id() will do?
Explain PYTHONPATH
With python, how do you find out which directory you are currently in?
What are global variables in python?
What is the purpose of is, not and in operators?