What does that even mean?
Error Error cannot compute
Function Junction
Short and sweet
?
100

a statement that is executed when the condition in the if statement is not met

What is else statement

100

instead of using { to show the start and end of our code you do this to not get a bad input error  

what is tab over

100

You use this type of loop in the main program of the game

what is a while loop

100

This is short for else if

what is elif

100

These are the 5 ports on a raspberrpi 

What are GPIO pins, USBs, HDMI, RCA(audio port), Power(USB-C)

200

a statement that tells the interpreter what to do if the condition is met.

what is an if statement
200

You need this at the end of of every beginning block of code in order for it to run

what is a colon :

200

You use this code in order to increase your score by 1 or more than one if you change 1 number

What is score = score + 1

200

This is short for random integer

randint

200

This is also displayed as (255,255,0)

What is Yellow

300

A reserved memory location to store values

what is a variable
300

DAILY DOUBLE

Whats the error?

sense.stick.direction_any = draw astronaut

300

You need these functions in order to run the game successfully. Name 3

flatten, gen_pipes, move_pipes, draw_astronaut, check_collision,  

300

You use two of these to denote that the variable is exactly equal to the comparator

what is ==

300
Not only can the raspberry pi sense the joystick commands but also these. List three 

What is temperature, pressure, humidity, magnetic field, acceleration and gyroscope, distance, and motion

400

The keyword for defining a function in Python

what is def

400

You need this which tells the computer where to place a new red pixel

 def move_pipes(matrix):

  for row in matrix:

    for i in range(7):

      row[1] = row[i + 1]

what is row[i] or i

400

You use these two words which are highlighted purple in your emulator to create a for loop

what are for and in

400

This is another short way besides writing 7, of writing the last index in a list. 

what is -1

400

You move this way because of the code displayed

Y += 1

What is down

500

a value that a function returns to the calling script or function when it completes its task

what is return

500

these two words missing at the end of the gen_pipes function display this error when run.

TypeError: 'NoneType' does not support indexing on line 62 in main.py

what is return matrix

500

You need the word (matrix) at the end of every function accept in the draw_astronaut function you use this. 

what is (event)

500

This is a shorten way of writing this 

matrix = flatten(matrix)

sense.set_pixels(matrix)

what is sense.set_pixels(flatten(matrix))

500

This is another computer science term for a list

what is an array