Why is Python called an interpreted language?

What is the difference between an interpreted and compiled language?

Python programs are interpreted and prints out the result without compiling the program into assembly language. It converts it to bytecode and makes cross-platform execution easier.

2 Likes