

0 / 2 embers
0 / 3000 xp
click for more info
Complete a lesson to start your streak
click for more info
Difficulty: 3
click for more info
Not enough gems
Cost: 6 gems
1: Welcome to Learn Python for Beginners
incomplete
2: Fix Your First Bug
incomplete
3: The Console
incomplete
4: What Is Python?
incomplete
5: What Is 'Code'?
incomplete
6: Multiple Instructions
incomplete
7: Syntax Errors
incomplete
8: Syntax Errors Quiz
incomplete
9: Lesson Failure
incomplete
10: Game Statistics
incomplete
11: Shop Response
incomplete
Back
ctrl+,
Next
ctrl+.
This lesson's interactive features are locked, please to keep using them
Syntax: The rules for how expressions and statements should be structured in a language. For example, in Python, the following is correct syntax:
print("hello world")
While in a different programming language, like Go, the correct syntax would be:
fmt.Println("hello world")
Syntax errors aren't the only kind of problems you can run into when coding, for example:
In this course, we're just concerned with syntax and logic errors. We'll cover performance issues in a later course.