Created
April 29, 2015 18:33
-
-
Save psicobyte/c813b95d3d15eb75b0b9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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