Skip to content

Commit f8bfc05

Browse files
committed
Fix quotes on italian translation
1 parent dafe81c commit f8bfc05

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

it/python_introduction/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,13 +64,13 @@ Se devi mettere un apostrofo nella tua stringa, hai due modi per farlo.
6464

6565
Utilizzando le virgolette doppie:
6666

67-
>>> "Runnin' down the hill"
68-
"Runnin' down the hill"
67+
>>> "Correre verso l'albero"
68+
"Correre verso l'albero"
6969

7070

7171
o facendo l'escape dell'apostrofo (cioè trattandolo come un carattere qualunque) con una barra rovesciata ( \ ):
7272

73-
>>> "Correre"\"giù dalla collina"
73+
>>> 'Correre verso l\'albero'
7474
"Correre giù dalla collina"
7575

7676

0 commit comments

Comments
 (0)