

InterviewSolution
Saved Bookmarks
1. |
Python is interpreted language ..? |
Answer» Python is an “interpreted” language. This means it uses an interpreter. An interpreter executes the statements of code “one-by-one” whereas the compiler executes the code entirely and lists all possible errors at a time. That\'s why python shows only one error message even though your code has multiple errors. | |