Saved Bookmarks
| 1. |
What are the main error types? which types are most dangerous and why?in Python |
|
Answer» Answer: the main types of ERRORS are:- 1)RUNTIME errors 2)syntax errors 3)logic errors the most dangerous would be runtime errors as if PROPER errors handling is not done my create error like division by 0.next logical where a code may run but yield undesirable output and finally less TRIVIAL are syntax as one will be prompted before running |
|