What is Python ?
In the context of this article, the term python refers to a name of a programming language. The official website is available in this link. Python is one of the programming language which is quite popular among developers. The popularity of this programming is skyrocketing since. It is because generally for a consideration, Python is a programming language which is quite easy to study with. Not only for those who already indulged themselves in the programming field with a certain amount of time accumulating experiences but also those who are new and try to start to learn a programming language.
One of the characteristic of the Python language is that it is an interpreted language. It is different with another type of programming language named compiled language where prior the execution of the program requires compile process. The compile process will check for any errors before it can be execute. On the other hand, python as an interpreted language will check for any errors simultaneously run the program.
In other words, python as an interpreted language needs an interpreter. On the other hand, another type of programming language which is a compiled language needs a compiler. In other words, python as an interpreted language needs an interpreter. On the other hand, another type of programming language which is a compiled language needs a compiler. Generally speaking, in terms of compiled language, any source code available compiled into a certain byte code later on it can run in any environments. It is different in term of interpreted language, it need an installed interpreter in the operating system in order to interpret the source code where it simultaneously run the program. Just visit the official website in this link in order to download it.
Executing Python Interpreter in the Command Line
So, after installing the Python interpreter, the following is the actual execution of it in the command line interface. The execution is in Windows operating system as an example :
Microsoft Windows [Version 10.0.18362.1016] (c) 2019 Microsoft Corporation. All rights reserved. C:\Users\Personal>python Python 3.8.2 (tags/v3.8.2:7b3ab59, Feb 25 2020, 23:03:10) [MSC v.1916 64 bit (AMD64)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>>
One thought on “What is Python ?”