/
spirzen
/
it-code-examples
Обзор
Документация
Войти
/
spirzen
/
it-code-examples
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
examples/python/lab-111-012/main.py
18 строк
416 B
Spirzen
Code migration pack
09 июн 2026, 01:41
09 июн 2026, 01:41
cebc284
Код
Авторство
О чём код?
import turtle def draw_equilateral_triangle(side: float, fill: bool = False, color: str = "black"): t = turtle.Turtle() t.speed(0) t.color(color) if fill: t.begin_fill() for _ in range(3): t.forward(side) t.left(120) # Внешний угол = 180° – 60° = 120° if fill: t.end_fill() t.hideturtle() draw_equilateral_triangle(100) turtle.done()