Exceptions

Python में Object-Oriented Programming परिचय

George Boorman

Curriculum Manager, DataCamp

a = 1
a / 0
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
    1/0
ZeroDivisionError: division by zero
a = [1,2,3]
a[5]
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
    a[5]
IndexError: list index out of range
a = 1
a + "Hello"
Traceback (most recent call last):
  File "<stdin>", line 2, in <module>
    a + "Hello"
TypeError: unsupported operand type(s) for +: /
'int' and 'str'
a = 1
a + b
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
    a + b
NameError: name 'b' is not defined
Python में Object-Oriented Programming परिचय

Exception handling

  • जब कोई exception उठे, तो प्रोग्राम को बंद होने से बचाएँ
  • try - except - finally:
try:
    print(5 + "a")

except TypeError: print("आप एक integer को string में जोड़ नहीं सकते, लेकिन उन्हें multiply कर सकते हैं!")
# कई except ब्लॉक हो सकते हैं except AnotherExceptionHere: # अगर AnotherExceptionHere हो, तो यह कोड चलाएँ
# वैकल्पिक finally ब्लॉक finally: print(5 * "a")
Python में Object-Oriented Programming परिचय

Exception handling output

आप एक integer को string में जोड़ नहीं सकते, लेकिन उन्हें multiply कर सकते हैं!
aaaaa
Python में Object-Oriented Programming परिचय

Raising exceptions

def make_list_of_ones(length):
    if length <= 0:
        # ValueError होने पर कस्टम संदेश
        # प्रोग्राम रुकेगा और error उठेगा
       raise ValueError("Invalid length!")
    return [1]*length

make_list_of_ones(-1)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
    make_list_of_ones(-1)
  File "<stdin>", line 3, in make_list_of_ones
    raise ValueError("Invalid length!")
ValueError: Invalid length!
Python में Object-Oriented Programming परिचय

Exceptions are classes

  • Exceptions, BaseException या Exception से inherited होती हैं
    BaseException
    +-- Exception
        +-- ArithmeticError                     
        |    +-- FloatingPointError
        |    +-- OverflowError
        |    +-- ZeroDivisionError              
        +-- TypeError
        +-- ValueError
        |    +-- UnicodeError
        |         +-- UnicodeDecodeError
        |         +-- UnicodeEncodeError
        |         +-- UnicodeTranslateError
        +-- RuntimeError
       ...
    +-- SystemExit
    ...
    
1 https://docs.python.org/3/library/exceptions.html
Python में Object-Oriented Programming परिचय

Custom exceptions

  • Exception या उसकी किसी subclass से inherit करें
  • आम तौर पर खाली class
class BalanceError(Exception): 
    pass

class Customer: def __init__(self, name, balance): if balance < 0 : raise BalanceError("Balance has to be non-negative!") else: self.name = name self.balance = balance
Python में Object-Oriented Programming परिचय

Exception in constructor

cust = Customer("Larry Torres", -100)
Traceback (most recent call last):
  File "script.py", line 11, in <module>
    cust = Customer("Larry Torres", -100)
  File "script.py", line 6, in __init__
    raise BalanceError("Balance has to be non-negative!")
BalanceError: Balance has to be non-negative!
Python में Object-Oriented Programming परिचय

Exceptions terminate the program

  • Exception ने constructor को बीच में रोका → object नहीं बना
cust
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
    cust
NameError: name 'cust' is not defined
Python में Object-Oriented Programming परिचय

Catching custom exceptions

try:
    cust = Customer("Larry Torres", -100)
except BalanceError:
    cust = Customer("Larry Torres", 0)
Python में Object-Oriented Programming परिचय

अभ्यास करते हैं!

Python में Object-Oriented Programming परिचय

Preparing Video For Download...