Lesson 00-05: Basic Python

This lesson is just a quick lesson on a few python basics.

Whitespace

Whitespace refers to spaces or tabs. At this stage of knowledge, having whitespace before python commands will cause errors. Try running the example below:

Whitespace has a very specific meaning in python, and we will cover this later - just know that for now, your code statements should not have any whitespace in front of it.

Comments

See the code below:

Next Section - Lesson 01-01: Datatypes in Python