The shape that this code will draw:
____(centerX, centerY, radius)
What is a CIRCLE?
This type of error messages typically describes an issue with a comma, quotation mark, or parenthesis/bracket.
This four letter word tells your Python program that you want your shape to include one color.
What is FILL?
This type of syntax is required for separating arguments in your code.
What is a comma?
You need to include this argument, in order to draw a star:
Star(centerX, centerY, radius, ____)
What is the number of POINTS?
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?
What is GREEN?
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?
The elongated shape that this code will draw:
____(centerX, centerY, width, height)
What is an OVAL?
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?
If you want your shape to display multiple colors, you must type this Python command.
This type of syntax is required for the Python program to read and display your label.
The arguments for this shape include:
____(left, top, width, height)
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?
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?
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?
The code for your rectangle is:
Rect(100,200,300,350)
This means that your rectangle is how wide?
What is 200 wide?
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?
This rgb sequence will display all blue only __,__,__
What is 0,0 255?
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.)