Is Python a compiled language or an interpreted language?
Answers were Sorted based on User's Feedback
Answer / nashiinformaticssolutions
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 |
Answer / 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 |
How will you convert a list into a string?
What is the difference between list and tuple?
Do you know why lambda forms in python does not have statements?
What is the difference between numpy and pandas?
In Python what is slicing?
How to avoid having class data shared among instances in python?
Can constructor be private?
Do you know the number of keywords in python?
How to display the contents of text file in reverse order?
What is loop in python?
Is there a difference between `==` and `is` in python?
What does map function in python do?