Files
lab_turtle/drawing.py
2026-02-04 11:17:17 -05:00

45 lines
590 B
Python

from turtle import (
forward,
back,
left,
right,
penup,
pendown,
color,
)
color("orange")
forward(100)
right(360 / 10)
forward(25)
right(360 / 10)
forward(25)
right(360 / 20)
forward(200)
right(360 / 5)
forward(50)
right(360 / 10)
forward(30)
left(360 / 10)
forward(30)
right(360 / 10)
forward(50)
right(360 / 5)
forward(200)
right(360 / 20)
forward(25)
right(360 / 10)
forward(25)
color("yellow")
forward(36)
right(360 * 2 / 5)
forward(36)
right(360 * 2 / 5)
forward(36)
right(360 * 2 / 5)
forward(36)
right(360 * 2 / 5)
forward(36)
right(360 * 2 / 5)
input()