Initial commit

This commit is contained in:
test_user_lai676 2023-07-10 20:39:47 +00:00
commit a841446ae5
2 changed files with 22 additions and 0 deletions

15
pyproject.toml Normal file
View File

@ -0,0 +1,15 @@
[tool.poetry]
name = "lab_turtle"
version = "0.1.0"
description = ""
authors = ["Chris Proctor <chris@chrisproctor.net>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.11"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"

7
star.py Normal file
View File

@ -0,0 +1,7 @@
from turtle import *
for line in range(5):
forward(100)
right(360 * 2 / 5)
input()