Initial commit

This commit is contained in:
2025-09-15 16:03:05 +00:00
commit d702abd217
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()