Skip to content

Instantly share code, notes, and snippets.

@psicobyte
Created April 29, 2015 18:33
Show Gist options
  • Select an option

  • Save psicobyte/c813b95d3d15eb75b0b9 to your computer and use it in GitHub Desktop.

Select an option

Save psicobyte/c813b95d3d15eb75b0b9 to your computer and use it in GitHub Desktop.
try:
resultado = dividendo/divisor
except ZeroDivisionError:
if divisor == 0:
print "No puedes dividir por cero, animal"
except ValueError:
if divisor == 0:
print "Hay que ser bruto: eso no es un número"
else:
print "La divisón resulta: ", resultado
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment