This is the width and height, in pixels, of the standard canvas.
What is 400 x 400?
This is the default value of the border property.
What is None?
This function lets you create a custom color using red, green, and blue values.
What is rgb(red, green, blue)?
This is the default opacity value for a shape.
What is 100?
These are the four parameters, in order, that Rect() takes.
What are left, top, width, height?
As you move in this direction, x values increase.
What is right?
This is the default borderWidth value.
What is 2?
This is the required range for each value (red, green, blue) in an rgb color.
What is 0 to 255, inclusive?
An opacity of this value makes a shape completely transparent.
What is 0?
This is the default fill color for a shape if none is specified.
What is black?
As you move in this direction, y values increase.
What is down?
This is the code to draw a rectangle with a green border of width 4.
What is Rect(left, top, width, height, border='green', borderWidth=4)?
This is the default type of gradient.
What is a radial gradient?
Opacity is described as the opposite of this.
What is transparency?
To draw a rectangle with no fill at all, set this argument to this value.
What is fill=None?
The corner of the XY graph are we working in.
What is the bottom right corner?
This is how you'd write dashes to create dashes of length 1 pixel and gaps of length 4 pixels.
What is dashes=(1, 4)?
This is the minimum number of colors required to create a gradient.
What is 2?
When shapes overlap, this determines which one appears on top.
What is drawing order (shapes drawn later appear in front)?
In a linear gradient, this parameter determines which direction the fade starts from.
What is start?