একটি ব্যতিক্রম নিক্ষেপ করা হয়েছে কিনা তা পরিষ্কার করতে আমরা চূড়ান্ত ধারাটি ব্যবহার করতে পারি:
try: #some code here except: handle_exception() finally: do_cleanup()
যদি একটি ব্যতিক্রমের ক্ষেত্রে পরিচ্ছন্নতা করা হয়, আমরা এইরকম কোড করতে পারি:
should_cleanup = True try: #some code here should_cleanup = False except: handle_exception() finally: if should_cleanup(): do_cleanup()