COMMANDS
COMMENTS
FUNCTIONS
LOOPS
NAMING
100

A command that lets you tell Tracy to move ahead.

FORWARD

FORWARD(a_number)

100

A message in your code that explains what is going on.

comment

100

This is like a command that you get to invent and name.

FUNCTION 

100

This is a way to repeat code in your program.

loop
100
Naming rules cannot start with this 

a number 

200

A command that lets you tell Tracy to move behind.

backward(a_number)

200

comments are written for these groups to read and understand

humans

200

TRUE OR FALSE: If I am creating a function that is going to draw 2 squares I would use 

Draw_Two_Squares

FALSE

200

Python writes loops as 

FOR I IN RANGE 

200

Naming rules only includes these type of letters 

lowercase 

300

In between the parenthesis, you need to put this to tell Tracy how far to move forward or backward.

(a_number)

300

This symbol is used at the beginning of an in-line comment

Hashtag (#)

300

In Python functions, the function body is this block of code that comes after the def my_function(): l

Indented

300

To show Python recognizes key words it does this  

Changes color 

300

Naming rules should use this type of name 

descriptive 

400

A command that tells Tracy to turn right

right(degrees) 

400

This punctuation is needed to begin a multi-line comment

Quotation Marks
400

TRUE OR FALSE: THIS NAME FOLLOWS ALL OF THE NAMING RULES 

make_square():

True

400

For loops help us by making it easy to alter our code and this 

 shortening our code

400

A symbol or container that holds a value.

Variable

500

When using Python's right or left command, you must include this in between the parenthesis 

degrees

500

Too many comments can make your code this 

unreadable

500

is the visual structure of how your code is laid out. It uses tabs to organize code into a hierarchy.

Indentation 

500

For loops are used to repeat code for this number of times

fixed 

500

The process programmer uses to identify elements 

Naming Guidelines