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
# ----------
# By ______(you!)________
#
# This is a drawing of ???.
from turtle import *
from turtle import (
forward,
back,
left,
right,
penup,
pendown,
color,
)
forward(100)
right(360 * 2 / 5)
forward(100)
forward(120)
right(360 * 2 / 5)
forward(100)
forward(140)
right(360 * 2 / 5)
forward(100)
forward(160)
right(360 * 2 / 5)
forward(100)
forward(180)
right(360 * 2 / 5)
input()