Python a compiled language or an interpreted language?
Answer Posted / nashiinformaticssolutions
Python is actually a partially interpreted and partially compiled language. When we run our code, the compilation process begins. This creates byte code internally, which the Python virtual machine (p.v.m.) then converts based on the underlying platform (computer + operating system).
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
1) How to validate ip address using regex 2)program to increment ip address in python Please find answers to above questions thanks in advance.
How do you include a string in python?
What can I build with python?
Consider multiple inheritances here. Suppose class c inherits from classes a and b as class c(a,b). Classes a and b both have their own versions of method func(). If we call func() from an object of class c, which version gets invoked?
What is subn() function?
Explain accessor and mutator methods in python?
How python is interpreted?
How many types of loops are there in python?
Who created python?
Is python shell scripting?
Who uses python?
Explain split(), sub(), subn() methods of “re” module in python.
Can you run python programs without python installed?
What is python constructor?
Do lists start at 0 or 1?