Is Python a compiled language or an interpreted language?
Answer Posted / glibwaresoftsolutions
Python is an interpreted language, which means the Python code is executed line-by-line by the Python interpreter at runtime, rather than being compiled into machine code beforehand.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain about assert statement?
What do you mean by instance?
What command do we use to debug a python program?
What does * args mean in python?
What happens with the following function definition?
What are the differences between pass and continue?
What is lambda? Why do lambda forms not have statements?
What is the pass statement in python?
How do we execute python?
explain the map() function?
What is type conversion in python?
What is a decorator in python?
How many kinds of sequences are supported by python? What are they?
Differentiate between lists and tuples?
What are python packages?