Lesson 00-05: Basic Python¶
This lesson is just a quick lesson on a few python basics.
print()
statements¶
The most basic way of seeing output is by using the print()
statement. Basic syntax is as follows:
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: