Skip to content

Commit 6115775

Browse files
authored
Fix type
1 parent 660ef04 commit 6115775

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/Pyllole/29_Loops.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ Nel seguente esempio ripetiamo la richiesta finché a `numero` non viene assegna
9595
numero=None
9696
while not numero:
9797
try:
98-
numero=int(input("Inserisci un numero intero: "))
98+
numero=int(input("Inserisci un numero intero: "))
9999
except:
100100
print("Il dato inserito non è un numero intero")
101101
```

0 commit comments

Comments
 (0)