Python · Exception Handling
What does this print? ``` class E(Exception): def __init__(self, bal, amt): super().__init__(bal, amt) self.amt = amt try: raise E(100, 250) except E as e: print(e.args, e.amt) ```
Answer locked. Get the free KnowCard app to reveal it — plus spaced-repetition review so it actually sticks.
