Exception trong python.
Python cung cấp 2 tính năng rất quan trọng để handle những lỗi không mong muốn và thêm khả năng debug trong ứng dụng python của bạn.
1. Exception handling.
2. Assertions.
Trong phần này ta chỉ chú trọng bào Exception handling.
Danh sách các Exception tiêu chuẩn:
EXCEPTION NAME | DESCRIPTION |
---|---|
Exception | Base class for all exceptions |
StopIteration | Raised when the next() method of an iterator does not point to any object. |
SystemExit | Raised by the sys.exit() function. |
StandardError | Base class for all built-in exceptions except StopIteration and SystemExit. |
ArithmeticError | Base class for all errors that occur for numeric calculation. |
OverflowError | Raised when a calculation exceeds maximum limit for a numeric type. |
FloatingPointError | Raised when a floating point calculation fails. |
ZeroDivisonError | Raised when division or modulo by zero takes place for all numeric types. |
AssertionError | Raised in case of failure of the Assert statement. |
AttributeError | Raised in case of failure of attribute reference or assignment. |
EOFError | Raised when there is no input from either the raw_input() or input() function and the end of file is reached. |
ImportError | Raised when an import statement fails. |
KeyboardInterrupt | Raised when the user interrupts program execution, usually by pressing Ctrl+c. |
LookupError | Base class for all lookup errors. |
IndexError
KeyError
|
Raised when an index is not found in a sequence.
Raised when the specified key is not found in the dictionary.
|
NameError | Raised when an identifier is not found in the local or global namespace. |
UnboundLocalError
EnvironmentError
|
Raised when trying to access a local variable in a function or method but no value has been assigned to it.
Base class for all exceptions that occur outside the Python environment.
|
IOError
IOError
|
Raised when an input/ output operation fails, such as the print statement or the open() function when trying to open a file that does not exist.
Raised for operating system-related errors.
|
SyntaxError
IndentationError
|
Raised when there is an error in Python syntax.
Raised when indentation is not specified properly.
|
SystemError | Raised when the interpreter finds an internal problem, but when this error is encountered the Python interpreter does not exit. |
SystemExit | Raised when Python interpreter is quit by using the sys.exit() function. If not handled in the code, causes the interpreter to exit. |
Raised when Python interpreter is quit by using the sys.exit() function. If not handled in the code, causes the interpreter to exit. | Raised when an operation or function is attempted that is invalid for the specified data type. |
ValueError | Raised when the built-in function for a data type has the valid type of arguments, but the arguments have invalid values specified. |
RuntimeError | Raised when a generated error does not fall into any category. |
NotImplementedError | Raised when an abstract method that needs to be implemented in an inherited class is not actually implemented. |
Syntax của handling một exception.
try: You do your operations here; ...................... except ExceptionI: If there is ExceptionI, then execute this block. except ExceptionII: If there is ExceptionII, then execute this block. ...................... else: If there is no exception then execute this block.Ta đi ngay vào ví dụ cho dễ;
#!/usr/bin/python try: fh = open("testfile", "w") fh.write("This is my test file for exception handling!!") except IOError: print "Error: can\'t find file or read data" else: print "Written content in the file successfully" fh.close()Nếu có file testfile và có quyền ghi thì output khi chạy đoạn code trên là:
Written content in the file successfully
Ta có thể có mệnh đề except không hoặc có nhiều exception như dưới:
try: You do your operations here; ...................... except: If there is any exception, then execute this block. ...................... else: If there is no exception then execute this block.Nhiều exceptions :
try: You do your operations here; ...................... except(Exception1[, Exception2[,...ExceptionN]]]): If there is any exception from the given exception list, then execute this block. ...................... else: If there is no exception then execute this block.
Bạn có thể định nghĩa finally trong mênh đề try như sau:
try: You do your operations here; ...................... Due to any exception, this may be skipped. finally: This would always be executed. ......................Ví dụ:
#!/usr/bin/python try: fh = open("testfile", "w") fh.write("This is my test file for exception handling!!") finally: print "Error: can\'t find file or read data"Nếu không có quyền ghi thì lỗi sẽ xuất hiện:
Error: can't find file or read data
Bạn có thể viết lại đoạn code trên rõ ràng hơn :
#!/usr/bin/python try: fh = open("testfile", "w") try: fh.write("This is my test file for exception handling!!") finally: print "Going to close the file" fh.close() except IOError: print "Error: can\'t find file or read data"
Nhận xét
Đăng nhận xét