THE PYTHON LANGUAGE INTRODUCTION
INTRODUCTION Before addressing the topic "The Python language introduction" let's make a brief description of what the language is. Python is a multi-paradigm language that has among its main objectives: dynamism, simplicity and flexibility. It supports the object oriented paradigm, structured programming, and many functional and reflection programming features. The most immediately recognizable features of Python are the untyped variables and the use of indentation for specification syntax, in place of the more common parentheses. Other distinctive features are the overloading of operators and functions through delegates, the presence of a rich assortment of basic types and functions and [...]