Renamed to drawing

This commit is contained in:
Chris Proctor 2023-07-10 17:50:50 -04:00
parent c54575fcad
commit a5969416bf
2 changed files with 21 additions and 7 deletions

21
drawing.py Normal file
View File

@ -0,0 +1,21 @@
# drawing.py
# ----------
# By ______(you!)________
#
# This is a drawing of a star.
from turtle import *
forward(100)
right(360 * 2 / 5)
forward(100)
right(360 * 2 / 5)
forward(100)
right(360 * 2 / 5)
forward(100)
right(360 * 2 / 5)
forward(100)
right(360 * 2 / 5)
input()

View File

@ -1,7 +0,0 @@
from turtle import *
for line in range(5):
forward(100)
right(360 * 2 / 5)
input()