Explain how python is interpreted.
Answer / chaitanya
Python program runs directly from the source code. Each type Python programs are executed code is required. Python converts source code written by the programmer into intermediate language which is again translated it into the native language / machine language that is executed. So Python is an Interpreted language.
Is This Answer Correct ? | 2 Yes | 0 No |
What is difference between input and raw_input in python?
Which python library would you prefer to use for data munging?
Explain different way to trigger/ raise exception in your python script?
Can you explain the life cycle of a thread?
Is cython as fast as c?
How would you convert a string into an int in python?
How to implement the decorator function, using dollar ()?
Describe how to use Sessions for Web python.
Explain python’s pass by references vs pass by value. (Or) explain about python’s parameter passing mechanism?
Is python an oops?
How do you debug a program in python? Answer in brief.
Is __ init __ necessary in python?