Files
lab_turtle/drawing.py
jbayati 105aa9c623 jhgkj
2025-09-16 10:12:29 -04:00

23 lines
272 B
Python

from turtle import (
forward,
back,
left,
right,
penup,
pendown,
color,
)
forward(200)
right(300 * 4 / 5)
forward(100)
right(390 * 3 / 7)
forward(200)
right(300 * 2 / 5)
forward(100)
right(300 * 6 / 1)
forward(200)
right(300 * 7 / 5)
input()