Is python interpreted or compiled?
Answer / Pramod Kumar Jaiswal
Python is an interpreted language, which means that the source code is not converted into machine code before execution. Instead, it's translated on-the-fly.
| Is This Answer Correct ? | 0 Yes | 0 No |
What causes static?
What is pip and when it is used ?
What is import time in python?
What is the difference between encapsulation and abstraction in python?
What happened if we call a key that is not present in dictionary and how to tackle that kind of error ?
What tuple means?
Is python a compiled or interpreted language?
Tell me how do you debug a program in python?
Explain python’s pass by references vs pass by value. (Or) explain about python’s parameter passing mechanism?
What is lambda? Why do lambda forms not have statements?
How is “self” explicitly defined in a method?
What does * args mean in python?