try/except/else/finally គឺជា statement តំរូវអោយសាកល្បងអនុវត្ត block នៃ statement នៅក្នុង statement try, តំរូវអោយអនុវត្ត block នៃ statement នៅក្នុង statement except ក្នុងករណីមាន exception កើតមានឡើង, តំរូវអោយអនុវត្ត block នៃ statement នៅក្នុង statement else ក្នុងករណីគ្មាន exception, និងតំរូវអោយអនុវត្ត block នៃ statement នៅក្នុង statement finally ទោះបីជាមានឬគ្មាន exception យ៉ាងណាក៏ដោយ។
try: 5/5 except: print('Exception occurred!') print('Block of statement ends here.') else: print("No exception occurred") finally: print('This statement is always executed.') print('The program ends here.')
No exception occurred This statement is always executed. The program ends here.