mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-11-23 06:03:07 +03:00
Merge pull request #3175 from abonte/fix-typos
[ruby/en-us][python3/it-it] Fix typos
This commit is contained in:
commit
76bb8b21f6
@ -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
|
||||
|
@ -158,7 +158,7 @@ status == 'pending' #=> false
|
||||
|
||||
status == :approved #=> false
|
||||
|
||||
Strings can be converted into symbols and vice versa:
|
||||
# Strings can be converted into symbols and vice versa:
|
||||
|
||||
status.to_s #=> "pending"
|
||||
"argon".to_sym #=> :argon
|
||||
|
Loading…
Reference in New Issue
Block a user