regularpython@gmail.com
Python Introduction
Python is a general-purpose interpreted, interactive, object-oriented, and high-level programming language. It was created by Guido van Rossum. Python source code is likewise accessible under the GNU General Public License (GPL). Python is very easy to learn. We can remember syntax very simple compared to other languages. It reduces the cost of program maintenance and development.
Python supports the use of modules and packages, which capability that packages can be designed in a modular fashion and code can be reused across a variety of projects.
Once you've developed a module or package you need, it can be scaled for use in different projects, and it's very easy to import or export these modules. The standard library and the interpreter are available free of cost we don't need to pay anything for it. Python interpreters are available for many operating systems. Python offers dynamic data types, instant class, and interfaces to many system calls and libraries.
Interpreted languages allow you to develop a software program faster, speed of program development is faster. Meaning it allows you to write the same kind of code faster.
Remember the speed of development and speed of execution both are not the same. When people say that X language is faster than the Y language they are speaking about program execution speed, not program development speed.
Python is Interpreted:
An interpreter is a program that reads and executes code. Python is prepared at runtime by the interpreter. You don’t need to compile your program before executing it. This is similar to PERL and PHP.
- Examples of interpreted languages Python, Ruby, PHP, JavaScript, etc.
- Examples of compiled languages like C, C++, Java, etc.
Python is Interactive:
You can really sit at a Python incite and cooperate with the mediator straightforwardly to compose your projects.
Python is Object-Oriented:
The object-oriented language was mainly designed to minimize complexity in ordinary procedural languages via data binding and encapsulation techniques. In an object-oriented language, the objects created provide limited or no get entry to other functions or methods inside the program. This enables solely approved or inherited methods/functions to access a specific object
Currently, python has two version