Success Blueprint
Exploiting Loopholes
The Leftovers
Liking Turtles
Game Jam
100

This function is used to send a message to be printed to the output

print()

100

While not technically a loop, this conditional runs if a certain condition is met and has the highest priority

if:

100

This command is used to import libraries

import()

100

This library must be imported before you can draw anything in the output

turtle

100

This game you all created that involved taking a turtle and creating art with it

Turtle Art

200

This escape character can be used to create a new line within a message

\n

200

Again, while not technically a loop, this conditional has medium priority and your first one will run if your if statement fails

elif:

200

Does absolutely nothing

pass

200

This function is used to change the color of your turtle

color()

200

This game you all created that involved inputting a key to increment a value

Cookie Clicker

300

This escape character can be used to create an indentation (or what the tab key does) within a message

\t

300

Found in most for loops, this refers to a range of numbers and can be used to repeat the for loop a certain number of times

range()

300

A container that holds many different values of the same kind (except booleans cause we STILL hate those)

List

300

This function is used to move your turtle forward

forward()

300

This game you all created that involved choosing your own path, adventure style

Choose Your Own Adventure

400

This function asks for user input while also optionally printing a message

input()

400

This loop has the most potential to repeat indefinitely

while:

400

This command is used to break out of while loops

break

400

This function is used to alter the speed of your turtle

speed()

400

This game you all created that involved debunking a mystery and solving a crime

Murder Mystery

500

The amount of data types that can be included in a message without a syntax error

1

500

Also found in for loops is a placeholder value that changes as the loop progresses

i

500

Refers to the length of a list or a string

len()

500

This function is used to change the size of your turtle's trail

pensize()

500

This game you all created that involved a random number being chosen and taking attempts to guess the number

Random Number Game