วิธีที่ง่ายที่สุดในการจัดการข้อยกเว้นใน python คือการใช้บล็อก "try-except"
ตัวอย่าง
try: fob = open("test.txt", "r") fob.write("This is my test file for exception handling!!") except IOError: print "Error: can\'t find the file or read data" else: print "Write operation is performed successfully on the file" fob.close()
ผลลัพธ์
Error: can't find the file or read data