Zero Division Errors
Zero Division Errors
Appears when you try to force Python to perform any operation which will provoke division when the driver is zero or indistinguishable from zero. There is more than one Python operator that can cause the exception to raise by using /,\\ and %.
Type Error is an adequate name used to describe the problem and an adequate exception to raise.
Attribute Error exception arrives among some other occasions when the user is trying to activate a method which doesn't exist in an item that you are dealing with. Take this code for example.
short_list = [1]
short_list.append(2)
short_list.depend(3)
The third line in this example tries to make use of a method that isn't contained in this list and there is where Attribute Error raises.
Syntax Error exception is raised when Python reaches a line of code that violates Python grammar it may sound strange but some codes can't be identified without being able to run the code.
Comments
Post a Comment