0
how to use try block statement and how to handle error
2 Antwoorden
+ 2
See the related lesson.
try:
    #code
except ZeroDivisionError:
    #handling for ZeroDivisionError
except (ValueError, TypeError):
    #handling for ValueError and TypeError
except:
    #handling for other errors/exceptions
- 3
hhhhhh and you expected from me to know something like that hhhh you are the nuts one arent you hhhh






