Skip to main content

Posts

Showing posts from April, 2018

Python Interpreter - Difference between Compiler & Interpreter - Python Tutorials

In our series of Python tutorials previously we discussed about the Basics of Python and Installation of Python in video tutorials as well. Here in this part lets discuss about Python Interpreters. Interpreter and Compiler:             As a software developer, we use different types of programming languages such as C, C++, Java, Python depends upon our requirement. We all know that the programming languages which a human can understand are called as high-level programming language. But: The computer understands only machine learning, Hence it is needed to convert or translate the code into the machine language. Interpreter and Compilers are used to convert the source code into the machine code. What is an Interpreter? The interpreter is nothing but a program which reads and executes the code. It includes different types of codes such as Source code, Compiler code . Most common interpreters available are Python , Ruby and PERL in which they execute their respective co