Files
lab_turtle/drawing.py
jmuen f7369e276f I changed the angle of the way it drew, then I
copy and pasted that line of code multiple times. I also changed it to draw in red.
2026-02-05 10:44:03 -05:00

35 lines
509 B
Python

from turtle import (
forward,
back,
left,
right,
penup,
pendown,
color,
)
color("red")
forward(100)
right(360 * 2.25 / 5)
forward(100)
right(360 * 2.25 / 5)
forward(100)
right(360 * 2.25 / 5)
forward(100)
right(360 * 2.25 / 5)
forward(100)
right(360 * 2.25 / 5)
forward(100)
right(360 * 2.25 / 5)
forward(100)
right(360 * 2.25 / 5)
forward(100)
right(360 * 2.25 / 5)
forward(100)
right(360 * 2.25 / 5)
forward(100)
right(360 * 2.25 / 5)
forward(100)
right(360 * 2.25 / 5)
input()