working on the triangle logic

This commit is contained in:
jandrews
2025-09-25 09:56:09 -04:00
parent b748cc30ba
commit 3dd5313ba4
3 changed files with 13 additions and 5 deletions

View File

@@ -5,7 +5,13 @@
from turtle import *
def triangle(side_length):
pass
right(45)
forward(side_length)
right(45)
forward(side_length)
right(45)
forward(side_length)
right(45)
def rectangle(height, width):
pass