Shapes
Errors
Colors
Syntax
100

The shape that this code will draw:


____(centerX, centerY, radius)

What is a CIRCLE?

100

This type of error messages typically describes an issue with a comma, quotation mark, or parenthesis/bracket.

What is a SYNTAX ERROR?
100

This four letter word tells your Python program that you want your shape to include one color.

What is FILL?

100

This type of syntax is required for separating arguments in your code.

What is a comma?

200

You need to include this argument, in order to draw a star:

Star(centerX, centerY, radius, ____)

What is the number of POINTS?

200

Oval(200,200,150,250, fill=gradient('red', 'blue', rgb(0,255,0))

The reason that your code won't run ___

What is, it is missing a closing parenthesis/bracket?

200
The G in rgb represents this commonly used color.

What is GREEN?

200

This type of syntax lets your Python program know that you are finished with your line statement.

What is a PARENTHESIS/closed parenthesis/closing bracket?

300

The elongated shape that this code will draw:

____(centerX, centerY, width, height)

What is an OVAL?

300

app background=gradient('red','blue',start='top')

Label('Adding this  missing',200,100,size=30,bold=True)

Label('syntax type will allow your',200,150,size=30,bold=True)

Label('background to be created',200,200,size=30,bold=True)

What is a PERIOD?

300

If you want your shape to display multiple colors, you must type this Python command.

What is FILL=GRADIENT?
300

This type of syntax is required for the Python program to read and display your label.

What are SINGLE QUOTES/quotation marks?
400

The arguments for this shape include: 

____(left, top, width, height)

What is a RECTANGLE?
400

SyntaxError at line 1: Cannot assign to function call

Circle(100, 200, 50, fill=gradient=('dodgerBlue', 'springGreen'))

Correcting this issue will allow your code to run.  

What is REMOVING THE SECOND EQUAL SIGN?

400

You want to draw this shape and want the yellow color to show in the second half of your circle. Your start direction should be ____

What is start RIGHT?

400

This type of syntax is needed in order to complete the following line of code: 

Star(300, 200, 50, 5, fill 'crimson')

What is an EQUAL SIGN?

500

The code for your rectangle is: 

Rect(100,200,300,350)

This means that your rectangle is how wide?

What is 200 wide?

500

Star(200, 350, 50, 2)

This explanation is the reason that your star won't draw.

What is, the number of point is less than 3?

500

This rgb sequence will display all blue only __,__,__

What is 0,0 255?

500

An explanation for the following error:

circle(200, 200, 50) NameError: name 'circle' is not defined

What is, because CASING MATTERS? 

(The "c" needs to be capitalized.)