प्रयास-अपवाद के कारण-अस्तित्व में और क्या है?
एक try
ब्लॉक आपको एक अपेक्षित त्रुटि को संभालने की अनुमति देता है। except
ब्लॉक केवल अपवाद आप को संभालने के लिए तैयार कर रहे हैं पकड़ने चाहिए। यदि आप एक अप्रत्याशित त्रुटि को संभालते हैं, तो आपका कोड गलत काम कर सकता है और बग छिपा सकता है।
else
यदि कोई त्रुटि नहीं थी, तो एक खंड निष्पादित करेगा, और try
ब्लॉक में उस कोड को निष्पादित नहीं करने से , आप एक अप्रत्याशित त्रुटि को पकड़ने से बचते हैं। फिर से, एक अप्रत्याशित त्रुटि को पकड़ने से कीड़े छिप सकते हैं।
उदाहरण
उदाहरण के लिए:
try:
try_this(whatever)
except SomeException as the_exception:
handle(the_exception)
else:
return something
"प्रयास को छोड़कर" सूट में दो वैकल्पिक खंड हैं, else
और finally
। तो यह वास्तव में है try-except-else-finally
।
else
केवल तभी मूल्यांकन करेगा जब try
ब्लॉक से कोई अपवाद नहीं है । यह हमें नीचे दिए गए अधिक जटिल कोड को सरल बनाने की अनुमति देता है:
no_error = None
try:
try_this(whatever)
no_error = True
except SomeException as the_exception:
handle(the_exception)
if no_error:
return something
इसलिए यदि हम else
विकल्प की तुलना करते हैं (जो बग पैदा कर सकते हैं) तो हम देखते हैं कि यह कोड की रेखाओं को कम कर देता है और हमारे पास अधिक पठनीय, रख-रखाव, और कम बग्गी कोड-बेस हो सकता है।
finally
finally
किसी भी मामले को निष्पादित नहीं करेगा, भले ही रिटर्न स्टेटमेंट के साथ एक और लाइन का मूल्यांकन किया जा रहा हो।
छद्म कोड के साथ टूट गया
टिप्पणियों के साथ, सभी सुविधाओं को प्रदर्शित करने वाले सबसे छोटे संभव रूप में, इसे नीचे तोड़ने में मदद मिल सकती है। इसे क्रमबद्ध रूप से सही मानें (लेकिन नाम नहीं परिभाषित होने तक चलने योग्य नहीं) छद्म कोड एक फ़ंक्शन में है।
उदाहरण के लिए:
try:
try_this(whatever)
except SomeException as the_exception:
handle_SomeException(the_exception)
# Handle a instance of SomeException or a subclass of it.
except Exception as the_exception:
generic_handle(the_exception)
# Handle any other exception that inherits from Exception
# - doesn't include GeneratorExit, KeyboardInterrupt, SystemExit
# Avoid bare `except:`
else: # there was no exception whatsoever
return something()
# if no exception, the "something()" gets evaluated,
# but the return will not be executed due to the return in the
# finally block below.
finally:
# this block will execute no matter what, even if no exception,
# after "something" is eval'd but before that value is returned
# but even if there is an exception.
# a return here will hijack the return functionality. e.g.:
return True # hijacks the return in the else clause above
यह सच है कि हम इसके बजाय ब्लॉक में कोड को कोड में शामिल कर सकते हैं , जहां यह अपवाद नहीं होता है, लेकिन क्या होगा यदि वह कोड खुद को पकड़ रहा है जिस तरह के अपवाद को उठाता है? ब्लॉक में छोड़ने से वह बग छिप जाएगा।else
try
try
हम try
ब्लॉक में कोड की लाइनों को कम करना चाहते हैं अपवादों से बचने के लिए हम इस सिद्धांत के तहत उम्मीद नहीं करते थे कि यदि हमारा कोड विफल रहता है, तो हम चाहते हैं कि यह जोर से विफल हो। यह एक सर्वोत्तम अभ्यास है ।
यह मेरी समझ है कि अपवाद त्रुटियां नहीं हैं
पायथन में, अधिकांश अपवाद त्रुटियां हैं।
हम pydoc का उपयोग करके अपवाद पदानुक्रम देख सकते हैं। उदाहरण के लिए, पायथन 2 में:
$ python -m pydoc exceptions
या पायथन 3:
$ python -m pydoc builtins
हमें पदानुक्रम देंगे। हम देख सकते हैं कि अधिकांश प्रकार की Exception
त्रुटियां हैं, हालांकि अजगर for
छोरों ( StopIteration
) को समाप्त करने जैसी चीजों के लिए उनमें से कुछ का उपयोग करता है । यह पायथन 3 का पदानुक्रम है:
BaseException
Exception
ArithmeticError
FloatingPointError
OverflowError
ZeroDivisionError
AssertionError
AttributeError
BufferError
EOFError
ImportError
ModuleNotFoundError
LookupError
IndexError
KeyError
MemoryError
NameError
UnboundLocalError
OSError
BlockingIOError
ChildProcessError
ConnectionError
BrokenPipeError
ConnectionAbortedError
ConnectionRefusedError
ConnectionResetError
FileExistsError
FileNotFoundError
InterruptedError
IsADirectoryError
NotADirectoryError
PermissionError
ProcessLookupError
TimeoutError
ReferenceError
RuntimeError
NotImplementedError
RecursionError
StopAsyncIteration
StopIteration
SyntaxError
IndentationError
TabError
SystemError
TypeError
ValueError
UnicodeError
UnicodeDecodeError
UnicodeEncodeError
UnicodeTranslateError
Warning
BytesWarning
DeprecationWarning
FutureWarning
ImportWarning
PendingDeprecationWarning
ResourceWarning
RuntimeWarning
SyntaxWarning
UnicodeWarning
UserWarning
GeneratorExit
KeyboardInterrupt
SystemExit
एक टिप्पणीकार ने पूछा:
मान लें कि आपके पास एक ऐसा तरीका है जो बाहरी API को पिंग करता है और आप API रैपर के बाहर एक कक्षा में अपवाद को संभालना चाहते हैं, क्या आप केवल अपवाद खंड के तहत विधि से e को वापस लेते हैं जहाँ e अपवाद वस्तु है?
नहीं, आप अपवाद को वापस नहीं करते हैं, बस स्टैच्रेस raise
को संरक्षित करने के लिए इसे एक नंगे के साथ रेयर करें।
try:
try_this(whatever)
except SomeException as the_exception:
handle(the_exception)
raise
या, पायथन 3 में, आप एक नया अपवाद जुटा सकते हैं और अपवाद के आधार पर बैकट्रेस को संरक्षित कर सकते हैं:
try:
try_this(whatever)
except SomeException as the_exception:
handle(the_exception)
raise DifferentException from the_exception
मैं यहां अपने उत्तर में विस्तार से बताता हूं ।