Is python interpreted or compiled?



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

Post New Answer

More Python Interview Questions

What causes static?

1 Answers  


What is pip and when it is used ?

1 Answers  


What is import time in python?

1 Answers  


What is the difference between encapsulation and abstraction in python?

1 Answers  


What happened if we call a key that is not present in dictionary and how to tackle that kind of error ?

1 Answers  


What tuple means?

1 Answers  


Is python a compiled or interpreted language?

1 Answers  


Tell me how do you debug a program in python?

1 Answers  


Explain python’s pass by references vs pass by value. (Or) explain about python’s parameter passing mechanism?

1 Answers  


What is lambda? Why do lambda forms not have statements?

1 Answers  


How is “self” explicitly defined in a method?

1 Answers  


What does * args mean in python?

1 Answers  


Categories