# programma 13.7
def dividiamo (a,b):
if b<=0:
raise ValueError("Non si può dividere per zero.")
return a/b
try:
dividiamo(4,0)
except ValueError as errore:
print(errore)
Programmare con Python for dummies
Impara a usare Python da zero e a programmare
# programma 13.7
def dividiamo (a,b):
if b<=0:
raise ValueError("Non si può dividere per zero.")
return a/b
try:
dividiamo(4,0)
except ValueError as errore:
print(errore)