Files
lab_turtle/drawing.py
njmason2 436280f91a Turtle Art - What did the Russian Turtle say?
Meet me at Red Square!
2025-08-29 14:48:06 -04:00

24 lines
286 B
Python

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