Initial commit

This commit is contained in:
2024-09-13 19:45:51 +00:00
commit d5f6c521f1
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()