diff options
| author | Divay Prakash <divayprakash@users.noreply.github.com> | 2018-10-24 11:30:23 +0530 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-10-24 11:30:23 +0530 | 
| commit | adfd3064e52e769dc46f62d8302be7e28be4e48d (patch) | |
| tree | 204d82adc9f82ae4fe377b631a1406b97eb6b11d /it-it/python3-it.html.markdown | |
| parent | 92022da0a6ea9417521563de9e537f337c426465 (diff) | |
| parent | 8f5a67190705c9a3101653901d8f8a7b48eb1775 (diff) | |
Merge branch 'master' into MarkdownFRChanges
Diffstat (limited to 'it-it/python3-it.html.markdown')
| -rw-r--r-- | it-it/python3-it.html.markdown | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/it-it/python3-it.html.markdown b/it-it/python3-it.html.markdown index 06ef9a5e..04f78cff 100644 --- a/it-it/python3-it.html.markdown +++ b/it-it/python3-it.html.markdown @@ -400,8 +400,8 @@ else:                  # Anche else è opzionale      print("some_var è  10.")  """ -I cicli for iterano sulle liste, cioé ripetono un codice per ogni elemento  -# di una lista. +I cicli for iterano sulle liste, cioè ripetono un codice per ogni elemento  +di una lista.  Il seguente codice scriverà:      cane è un mammifero      gatto è un mammifero @@ -409,7 +409,7 @@ Il seguente codice scriverà:  """  for animale in ["cane", "gatto", "topo"]:      # Puoi usare format() per interpolare le stringhe formattate. -    print("{} is a mammal".format(animal)) +    print("{} è un mammifero".format(animale))  """  "range(numero)" restituisce una lista di numeri da zero al numero dato | 
