Files
lab_turtle/drawing.py
mdecker6 3571e5c832 Changed code to erase left triangle of star
It was hard at first, but when it made sense, I felt joy. It took a couple days to even start the program. But now it feels seamless. So happy.
The situation that led to this emotion, was feelign overwhelmed by the coding process, then when it clicked it was so satisfying!
2025-08-31 16:48:23 -04:00

22 lines
269 B
Python

from turtle import (
forward,
back,
left,
right,
penup,
pendown,
color,
)
forward(50)
right(360 * 2 / 5)
forward(100)
right(360 * 2 / 5)
forward(100)
right(360 * 2 / 5)
forward(100)
right(360 * 2 / 5)
forward(50)
right(360 * 2 / 5)
input()