Question: Create a simple graphical program as indicated below using the Turtle Graphics.(python) Requirements: You must draw five circles at the locations as shown above. Demonstrate
Create a simple graphical program as indicated below using the Turtle Graphics.(python)

Requirements:
You must draw five circles at the locations as shown above.
Demonstrate the use of the following specifications:
At least 3 different colors and sizes.
Print your name and student number at the top of the screen page.
Write code to show many variety of patterns on this turtle screen.
Hint:
turtle.goto(x, y=None)
turtle.write(arg, move=False, align="left", font=("Arial", 8, "normal"))
| Parameters: | arg object to be written to the TurtleScreen move True/False align one of the strings left, center or right font a triple (fontname, fontsize, fonttype) |
Write text - the string representation of arg - at the current turtle position according to align (left, center or right) and with the given font. If move is true, the pen is moved to the bottom-right corner of the text. By default, move is False.
>>> turtle.write("Home = ", True, align="center")>>> turtle.write((0,0), True)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
