Monthly Archives: September 2021

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 [...]

By |2022-10-24T15:30:20+02:0025 September 2021|0 Comments

PYTHON RUNTIME ENVIRONMENT

INTRODUCTION Before talking about the topic " Python runtime environment " let's make a very brief introduction. Let's see in this article how the runtime manages the execution of programs. Let's take a closer look at how Python executes programs through its runtime. This will be useful to us as we continue the course. Let's first ask ourselves if Python is a compiled, interpreted language or is it also based like C# and Java on Virtual Machine? COMPILED LANGUAGES PYTHON RUNTIME ENVIRONMENT - INTERPRETED LANGUAGES PYHTON RUNTIME ENVIRONMENT - LANGUAGES THAT USE BYTECODE [...]

By |2024-08-09T16:06:27+02:0028 September 2021|0 Comments

WHAT’S NEW IN C# 10, C# 11 AND C# 12

SEALED ToString() IN C# 10 The argument concerns the possibility of preventing the override of the ToString () method of the Object class within the hierarchy of Type records. public virtual string? ToString();   This method of the Object class is inherited by all types and represents textual information on the object on which the method is invoked. If we don't properly redefine the ToString () method, it returns the name of the Type on which it was invoked. In previous lessons when we talked about records we saw that the ToString () method was redefined by the compiler [...]

By |2024-08-09T07:28:13+02:0024 September 2021|0 Comments
Go to Top