Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 1.22 KB

File metadata and controls

17 lines (13 loc) · 1.22 KB

Syntax Error {#syntax-error}

An error occurred as a result of having stray spaces or using reserved keywords.

######Example 1

Error Message ![Syntax Error Error Message 1.png](/assets/chapter_4_assets/Syntax Error Error Message 1.png)
Bug example ✘ Source of error: import is a reserved keyword.
![Syntax Error Bug Example 1.png](../../assets/chapter_4_assets/Syntax Error Bug Example 1.png)
Correction ✔ Solution: change the variable name.
![Syntax Error Correction 1.png](../../assets/chapter_4_assets/Syntax Error Correction 1.png)

######Example 2

Error Message ![Syntax Error Error Message 2.png](/assets/chapter_4_assets/Syntax Error Error Message 2.png)
Bug example ✘ Source of error: the name of the parameter contains a space.
![Syntax Error Bug Example 2.png](/assets/chapter_4_assets/Syntax Error Bug Example 2.png)
Correction ✔ Solution: remove the space or replace the space with _
![Syntax Error Correction 2.png](/assets/chapter_4_assets/Syntax Error Correction 2.png)