Respuesta :
Answer:
Three python errors are; import error, value error, and key error.
Explanation:
Errors occur in all programming languages and just like every other language, python has error handling techniques like the try and except and also the raise keyword.
A value error occurs when an output of a variable or expression gives an unexpected value. Import error results from importing a module from an unknown source while a key error is from a wrong input keypress.
Catching these errors and raising an error gives more control and continuity of the source code.
Answer:
Catching exceptions helps a programmer to resolve raised issues at runtime instead of deliberately closing their program.
There are a lot of types of file errors. e.g. hadware/os errors, name errors,
operation errors, data errors.
Explanation:the function try will provide a testing of your code validating if it is correct, it will continue running. and adding the function except, it will print the error.
Dealing with the error depends on what you like the program to do and how you want to identify the errors so you can work on them.