I messed up the star.

This commit is contained in:
Chris Proctor 2024-08-26 15:25:45 -04:00
parent 04f361344c
commit 3cf0d2e9f0
1 changed files with 13 additions and 12 deletions

View File

@ -1,21 +1,22 @@
# drawing.py from turtle import (
# ---------- forward,
# By ______(you!)________ back,
# left,
# This is a drawing of ???. right,
penup,
pendown,
from turtle import * color,
)
forward(100) forward(100)
right(360 * 2 / 5) right(360 * 2 / 5)
forward(100) forward(120)
right(360 * 2 / 5) right(360 * 2 / 5)
forward(100) forward(140)
right(360 * 2 / 5) right(360 * 2 / 5)
forward(100) forward(160)
right(360 * 2 / 5) right(360 * 2 / 5)
forward(100) forward(180)
right(360 * 2 / 5) right(360 * 2 / 5)
input() input()