গাণিতিক ত্রুটি ব্যতিক্রম হল সাংখ্যিক গণনার জন্য ঘটে যাওয়া সমস্ত ত্রুটির জন্য বেস ক্লাস। এটি অন্তর্নির্মিত ব্যতিক্রমগুলির জন্য বেস ক্লাস যেমন:OverflowError, ZeroDivisionError, FloatingPointError
আমরা নিম্নরূপ প্রদত্ত কোডে ব্যতিক্রম ধরতে পারি
উদাহরণ
import sys try: 7/0 except ArithmeticError as e: print e print sys.exc_type print 'This is an example of catching ArithmeticError'
আউটপুট
integer division or modulo by zero <type 'exceptions.ZeroDivisionError'> This is an example of catching ArithmeticError