made some code

This commit is contained in:
gsanders
2025-10-10 09:50:16 -04:00
parent 5510fcfac9
commit 4f1debd9a1
2 changed files with 12 additions and 5 deletions

View File

@@ -1,7 +1,15 @@
# drawing.py
# ----------
# By ____(you)___________
# By ____(Grandville)___________
#
# (Briefly describe what this program does.)
# (draws triangles.)
from turtle import *
from math import sqrt
def triangle(size):
forward(size)
right(60)
triangle(100)
input()