Add script to draw a star.

This commit is contained in:
Chris Proctor 2022-01-27 15:09:24 -05:00
commit 57fc22a88b
1 changed files with 7 additions and 0 deletions

7
star.py Normal file
View File

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