Files
project_drawing/drawing.py
2025-10-10 09:50:16 -04:00

16 lines
205 B
Python

# drawing.py
# ----------
# By ____(Grandville)___________
#
# (draws triangles.)
from turtle import *
from math import sqrt
def triangle(size):
forward(size)
right(60)
triangle(100)
input()