Files
lab_turtle/drawing.py
2025-09-16 09:49:19 -04:00

27 lines
345 B
Python

from turtle import (
forward,
back,
left,
right,
penup,
pendown,
color,
)
color('blue')
forward(300)
right(360 * 2 / 5)
color('red')
forward(300)
right(360 * 2 / 5)
color('orange')
forward(300)
right(360 * 2 / 5)
color('purple')
forward(300)
right(360 * 2 / 5)
color('black')
forward(300)
right(360 * 2 / 5)
input()