Initial commit

This commit is contained in:
2023-07-12 02:19:01 +00:00
commit 6d04a233eb
4 changed files with 54 additions and 0 deletions

21
drawing.py Normal file
View File

@@ -0,0 +1,21 @@
# drawing.py
# ----------
# By ______(you!)________
#
# This is a drawing of ???.
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()