You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
346 B
16 lines
346 B
vstupni_cislo = input("Zadej cislo:")
|
|
|
|
try:
|
|
vstupni_cislo = int(vstupni_cislo)
|
|
print(f"{vstupni_cislo} je číslo") # AltGR+b|n={|}
|
|
except:
|
|
print("Něco se pokazilo")
|
|
|
|
|
|
print("-----------------")
|
|
|
|
try:
|
|
vek = int(input("Napiš tvůj věk:"))
|
|
print(f"Za rok ti bude {vek+1} let")
|
|
except:
|
|
print("Nezadal si spravný číslo")
|