Mã có thể được viết như sau để bắt ngoại lệ
a, b=5, 0 try: if b != 0: print a/b else: a/b raise ZeroDivisionError except Exception as e: print e
Chúng tôi nhận được kết quả sau
C:/Users/TutorialsPoint1/~.py integer division or modulo by zero
Mã có thể được viết như sau để bắt ngoại lệ
a, b=5, 0 try: if b != 0: print a/b else: a/b raise ZeroDivisionError except Exception as e: print e
Chúng tôi nhận được kết quả sau
C:/Users/TutorialsPoint1/~.py integer division or modulo by zero