Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

วิธีจัดการกับข้อยกเว้น python ภายใน if statement?


รหัสสามารถเขียนได้ดังต่อไปนี้เพื่อจับข้อยกเว้น

a, b=5, 0
try:
   if b != 0:
       print a/b
   else:
       a/b
       raise ZeroDivisionError
except Exception as e:
       print e

เราได้ผลลัพธ์ดังต่อไปนี้

C:/Users/TutorialsPoint1/~.py
integer division or modulo by zero