Lagt till kapitel 8

This commit is contained in:
2024-02-03 18:44:13 +01:00
parent dcd905737e
commit 0983e93cbe
15 changed files with 292 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
#!/usr/bin/env python3
while True:
try:
tal = int(input("Skriv ett heltal: "))
except:
print("Skriv endast heltal")
else:
print("Du skrev", tal)
break