Question: . (Turtle: draw a line) Write the following function that draws a line from point (x1, y1) to (x2, y2) with color (default to black)
. (Turtle: draw a line) Write the following function that draws a line from point (x1, y1) to (x2, y2) with color (default to black) and line size (default to 1).
def drawLine(x1, y1, x2, y2, color = "black", size = 1):
must be in python
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
