commit a841446ae59e3a3721f2205e73704ae1808bae77 Author: test_user_lai676 Date: Mon Jul 10 20:39:47 2023 +0000 Initial commit diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..b5e981d --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,15 @@ +[tool.poetry] +name = "lab_turtle" +version = "0.1.0" +description = "" +authors = ["Chris Proctor "] +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" diff --git a/star.py b/star.py new file mode 100644 index 0000000..79f8357 --- /dev/null +++ b/star.py @@ -0,0 +1,7 @@ +from turtle import * + +for line in range(5): + forward(100) + right(360 * 2 / 5) + +input()