Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
Exceptions
Errors detected during execution are called exceptions.
Example :ZeroDivisionError
This error is raised when the second argument of a division or modulo operation is zero.
>>> a = '1'
>>> b = '0'
>>> print int(a) / int(b)
>>> ZeroDivisionError: integer division or modulo by zero
ValueError
This error is raised when a built-in operation or function receives an argument that has the right type but an inappropriate value.
>>> a = '1'
>>> b = '#'
>>> print int(a) / int(b)
>>> ValueError: invalid literal for int() with base 10: '#'
To learn more about different built-in exceptions click here.
Handling Exceptions
The statements try and except can be used to handle selected exceptions. A try statement may have more than one except clause to specify handlers for different exceptions.
#Code
try:
print 1/0
except ZeroDivisionError as e:
print "Error Code:",e
Output
Error Code: integer division or modulo by zero
You are given two values a and b.
Perform integer division and print a//b.
The first line contains T, the number of test cases.
The next T lines each contain the space separated values of a and b.
Print the value of a//b.
In the case of ZeroDivisionError or ValueError, print the error code.
3
1 0
2 $
3 1
Error Code: integer division or modulo by zero
Error Code: invalid literal for int() with base 10: '$'
3
Note :For integer division in Python 3 use //.
for t in xrange(int(input())):
try:
a,b = map(int,raw_input().split())
print a/b
except ZeroDivisionError as e:
print "Error Code: %s" % e
except ValueError as e:
print "Error Code: %s" % e
# Enter your code here. Read input from STDIN. Print output to STDOUT
for i in range(int(input())):
try:
a,b=map(int,input().split())
print(a//b)
except Exception as e:
print("Error Code:",e)
# Enter your code here. Read input from STDIN. Print output to STDOUT
#from __future__ import division
for i in xrange(input()):
try:
a,b = map(int, raw_input().split())
print a/b
except Exception as e:
if isinstance(e, ZeroDivisionError):
stringy = str(e).split()
stringy.insert(2, "or")
stringy.insert(3, "modulo")
print 'Error Code:'," ".join(map(str, stringy))
else:
print 'Error Code:',e
# Enter your code here. Read input from STDIN. Print output to STDOUT
# Enter your code here. Read input from STDIN. Print output to STDOUT
from sys import stdin,stdout
n = stdin.readline()
for i in range(0,int(n)):
line = stdin.readline().strip('\n\r')
a,b = line.split(" ")
try:
print(str(int(a)//int(b)))
except ZeroDivisionError as e:
print("Error Code: {}".format(e))
except ValueError as e:
print("Error Code: {}".format(e))
In our experience, we suggest you solve this Exceptions Hacker Rank Solution and gain some new skills from Professionals completely free and we assure you will be worth it.
Exceptions problem is available on Hacker Rank for Free, if you are stuck anywhere between a compilation, just visit Queslers to get Exceptions Hacker Rank Solution
I hope this Exceptions Hacker Rank Solution would be useful for you to learn something new from this problem. If it helped you then don’t forget to bookmark our site for more Hacker Rank, Leetcode, Codechef, Codeforce Solution.
This Problem is intended for audiences of all experiences who are interested in learning Programming in a business context; there are no prerequisites.
Keep Learning!
More Hacker Rank Problem & Solutions >>
Staircase Hacker Rank Solution
A Very Big Sum Hacker Rank Solution
Diagonal Difference Hacker Rank Solution