Python(Overview)#1


Python is a general purpose, high-level, interpreted, interactive and object-oriented scripting language created by Guido Van Rossum. The syntax and structure is extremely simple to read and follow, most of which can be understood even if you do not know any programming.

The Python interpreter is easily extended with new functions and data types implemented in C or C++ (or other languages callable from C). Python is also suitable as an extension language for customizable applications.With python you can do GUI development, Web application, System administration tasks,Data Analysis, Visualization and much more.
Python is interpreted language : Python is processed at runtime by the interpreter,So that you don’t need to compile before executing.

Python is Dynamically Typed : In python you don’t need to define variable data type ahead of time, python automatically guesses the data type of the variable based on the type of value it contains.

Python is Object-Oriented : Python supports Object-Oriented style of programming that encapsulates code within objects.

Leave a comment

Design a site like this with WordPress.com
Get started