Files
lab_turtle/drawing.py

20 lines
195 B
Python

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