Initial commit

This commit is contained in:
2024-08-26 23:09:41 +00:00
commit 1ee977b290
5 changed files with 56 additions and 0 deletions

22
drawing.py Normal file
View File

@@ -0,0 +1,22 @@
from turtle import (
forward,
back,
left,
right,
penup,
pendown,
color,
)
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()