Files
lab_turtle/drawing.py
2026-02-10 10:48:08 -05:00

22 lines
257 B
Python

from turtle import (
forward,
back,
left,
right,
penup,
pendown,
color,
)
forward (250)
right(360 * 4/ 5)
forward (250)
right (360 * 4 / 5)
forward (250)
right(360 * 4 / 5)
forward (250)
right(360 * 4 / 5)
forward(250)
input()