Python Interpreted or Compiled
As the Py virtual machine executes the byte code line by line so it is interpreted. Languages Like C are compiled Languages.For example:
For the following code we get this output:
print("Hello World")
print(a)
Hello World
Traceback (most recent call...
curiousindian958.hashnode.dev1 min read