Files
lab_turtle/drawing.py
klinn 61ac45f8b8 I created a right angle with modifying the text.
Intrigued because I like learning new things.

I realized some of the coding I used to create
this right angle made me intrigued about learning
more of it.
2026-02-05 10:45:02 -05:00

20 lines
204 B
Python

from turtle import (
forward,
back,
left,
right,
penup,
pendown,
color,
)
forward (250)
right(250 * 4 / 5)
forward (250)
right (360 * 4 / 5)
forward (250)
right(90)
input()