Initial commit

This commit is contained in:
2025-08-28 04:57:19 +00:00
commit 83ace7a2f4
4 changed files with 55 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()