I tried to write the letter A

This commit is contained in:
kdang
2025-09-24 09:49:44 -04:00
parent 67168082a7
commit 947c29d552
2 changed files with 16 additions and 1 deletions

12
draw_letter_a Normal file
View File

@@ -0,0 +1,12 @@
from turtle import (
forward,
back,
left,
right,
penup,
pendown,
color,
)
left(50)
forward(50)

View File

@@ -13,7 +13,10 @@ from turtle import *
from math import sqrt
def draw_letter_a(unit):
pass
left(65)
forward(250)
right(125)
forward(250)
def draw_letter_b(unit):
pass