Giugno 2021

get Python

In questa lezione studieremo il metodo get() di Python sui dizionari. Il metodo Python get() restituisce il valore della chiave specificata, se presente nel dizionario. Se la chiave non esiste…

Nested if

In this lesson I will give examples using nested if statement in Python. Defining nestings means, in a nutshell, that you can insert ifs within other ifs or within the…

elif Python

The if elif else construct in Python allows the nesting of multiple if statements, i.e. if then otherwise statements. In fact in the Python language to implement the multiple selection,…

Python Dictionaries

Python dictionaries are data structures that contain elements (items) formed by a key (key) and a value (value). my_dict = {“key_1”: “value_1”, “key_2”: “value_2”, “key_3”: “value_3”, …} Let’s see a…