A place or container where we can store information that can change.
What is a variable?
What will be printed if x = 6 and the code is if x > 5: print("Yes") else: print("No")?
It will print: Yes.
This shape only needs two points, (x1, y1 & x2, y2).
What is a Line?
A flower is drawn where the mouse is clicked. The green stem is drawn using Line(x1, y1, x2, y2). What are the values of x1, y1, x2, y2.
What is mouseX and mouseY?
When the code is written incorrectly.
What is a syntax error?
These help explain what the code does so that people can understand it better.
What are comments or notes
This is used to display the output of your code.
What is the canvas?
This shape only needs x, y, & radius.
What is a circle?
Of the 4 arguments given: Rect(x, y, width, height, fill) This argument is OPTIONAL when using Rect()
What is fill?
This tool helps find and fix errors in code?
What is a debugger?
A symbol that starts a comment in Python.
What is the hash tag?
The canvas' x and y axis are both this many pixels.
What is 400 pixels long.
This shape only needs x, y, radius, & points.
What is a Star?
The code that results in a shape with no fill?
What is fill = None
This code won't run properly because of an error.
Circle(200, 200, 50, fill = brown)
What is missing quotes?
This code will print a colored shape.
Circle(200, 200, 50, fill = 'red')
What is a red circle?
I want to see the blue border of my shape then I would add this argument.
What is border = 'blue'
This shapes location is the upper left corner and it needs width and height in order to be drawn properly.
What is a Rectangle?
Colors fading/transitioning into another color.
What is gradient fill?
A syntax error in the code below:
Rect 100, 200, 24, 25, fill = 'blue
What are missing parentheses?
Data stored as words in Python written as str.
What is a string?
These shapes both use the radius argument.
What is a Circle and a Star?
This color is the default color for a shapes.
What is black.
I use this property to make a shape more or less transparent.
What is opacity?
When you type something incorrectly and your code produces and error.
What is a syntax error?