try/except/else គឺជា statement តំរូវអោយសាកល្បងអនុវត្ត block នៃ statement នៅក្នុង statement try និងតំរូវអោយអនុវត្ត block នៃ statement នៅក្នុង statement except ក្នុងករណីមាន exception កើតឡើង។ តែបើការអនុវត្ត block នៃ statement នៅក្នុង statement try គ្មានរឿងអ្វីកើតឡើងទេ block នៃ statement នៅក្នុង statement except នឹងត្រូវរំលងចោល ហើយ block នៃ statement នៅក្នុង statement else នឹងត្រូវយកទៅអនុវត្ត។ ពិនិត្យកម្មវិធីខាងក្រោមនេះ៖
try: 5/5 except: print('Exception occurred!') print('Block of statement ends here.') else: print("No exception occurred") print('The program ends here.')
No exception occurred The program ends here.