Part One: Write a program to draw a repetitive pattern or outline of a shape using for loops and Turtle Graphics. Use the following guidelines to write your program.
- Decide on a repetitive pattern or the outline of a shape, such as a house, to draw.
- Give your artwork a name. Print the name to the output.
- Using for loops and the Turtle Module, draw the outline of a shape or a repetitive pattern.
- At least one for loop that repeats three or more times must be used.
- Use at least one color apart from black.
- Write the pseudocode for this program. Be sure to include any needed input, calculations, and output.
Insert your pseudocode here:
Part Two: Code the program. Use the following guidelines to code your program.
- To code the program, use the Python IDLE.
- Using comments, type a heading that includes your name, today's date, and a short description of the program.
- Follow the Python style conventions regarding indentation and the use of white space to improve readability.
- Use meaningful variable names.