Divide por error cero Python Exception Manipling
try:
print 1/0
except ZeroDivisionError:
print "You can't divide by zero!"
Aakashcode12
try:
print 1/0
except ZeroDivisionError:
print "You can't divide by zero!"