Files
lab_turtle/drawing.py
juddin2 f9882f1c86 I changed the numbers to create a new shape.
I was a little frustrated because I couldn't get the turtle to change the shape into what I wanted.
2025-08-31 18:12:01 -04:00

23 lines
267 B
Python

from turtle import (
forward,
back,
left,
right,
penup,
pendown,
color,
)
forward(150)
right(200 * 2 / 5)
forward(200)
right(200 * 2 / 5)
forward(200)
right(200 * 2 / 5)
forward(200)
right(200 * 2 / 5)
forward(200)
right(100 * 2 / 5)