1/4
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai | Chat |
|---|
No analytics yet
Send a link to your students to track their progress
Syntax Error
Occurs when Python's grammar rules are violated, such as forgetting a quotation mark or a closing parenthesis.
Type Error
Occurs when an operation is attempted between incompatible types, for example, trying to add a string and an integer like "Hi" + 5.
Name Error
Occurs when a variable is referenced before it is defined or if there is a typographical error in the variable name, such as typing aGe instead of age.
ZeroDivisionError
Occurs when an attempt is made to divide a number by zero, for example, 5 / 0.
Logical Error
A situation where the code runs without crashing but produces the incorrect output due to a mistake in the logic or formula used.