State the order of operations used by Python for evaluating arithmetic operators.
Parse a Python statement involving arithmetic using the correct order of operations.
Explain what it means to read a mathematical statement “from the inside out”.
Identify the comment character used in Python.
Use comments appropriately to explain code and define variables.
Use comments to give the units of a variable (where appropriate).
Compare and contrast mathematical types of numbers and computer types of numbers.
State the 3 types of numbers native to Python.
Use type()
to determine the type of a variable.
Distinguish between defining a function and calling a function.
State the syntax for calling a function in Python.
Import a Python package using import
.
Import particular function from a Python package using from * import *
.
Access a function from an imported package.
Compare and contrast how Python uses whitespace at the beginning of a line versus in the body of a line.
Use appropriate coding style with whitespace to make code legible.
Explain how Python uses indentation to distinguish blocks of code.
Use 4 spaces to denote a given level of indentation in blocks of code.