generated from mwc/lab_turtle
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.
20 lines
204 B
Python
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()
|