2021

Python Compiler Online

Integriamo un Python Compiler Online per provare direttamente il funzionamento del codice. In basso troverete la versione base, scorrendo nella pagina troverete il compiler con l’integrazione di alcune librerie fondamentali…

Print Python

The Python print() function is used to print the output. The print function accepts any number of parameters and inside the tinde brackets we can specify a string, a variable,…

Variables Python

Today we will talk about variables in Python. Recall that variables are memory spaces where information is stored. This information can be numeric or string. Variables names in Python The…

Dizionari in Python

I dizionari in Python sono delle strutture dati che contengono elementi (items) formati da una chiave (key) e da un valore (value). my_dict = {“key_1”: “value_1”, “key_2”: “value_2”, “key_3”: “value_3”,…

Flex

Flex o flexbox CSS, come spiegato nella precedente lezione consente di creare layout molto più semplici da gestire grazie alle proprietà che si possono assegnare. Analizziamo in dettaglio queste proprietà.…

charCodeAt JavaScript

Il metodo charCodeAt di JavaScript, da utilizzare sulle stringhe, prende come parametro opzionale un indice. Questo metodo restituisce il carattere Unicode del carattere corrispondente specificato dall’indice. Dunque la sintassi è…