Keyword | Definition |
---|---|
indentation error | type of syntax error which happens when lines of code aren't indented correctly (moved across from the left of the screen) to match where python expects them to be |
missing colon | a type of syntax error where an indented block of code doesn't have a line above it which ends with a colon |
syntax error | a type of error which prevents code from being run which happens when you break the rules of the programming language |
unbalanced brackets | a type of syntax error where part of the code isn't surrounded with the correct type of brackets on both sides |
unbalanced quotes | a type of syntax error where text isn't surrounded on both sides with the correct type of quotation marks |