summaryrefslogtreecommitdiffstats
path: root/Doc/includes
diff options
context:
space:
mode:
authorDaniele Procida <daniele@vurt.org>2023-07-23 10:22:05 (GMT)
committerGitHub <noreply@github.com>2023-07-23 10:22:05 (GMT)
commitf7e13002ff62ca31b24acae5d057874de7a967d5 (patch)
tree811aa19b52e8ff9bb3edd6ee1884f0d163be4437 /Doc/includes
parent332db37835c403a0939aa46527736a9ea898c819 (diff)
downloadcpython-f7e13002ff62ca31b24acae5d057874de7a967d5.zip
cpython-f7e13002ff62ca31b24acae5d057874de7a967d5.tar.gz
cpython-f7e13002ff62ca31b24acae5d057874de7a967d5.tar.bz2
[3.12] gh-106996: Add the basics of a turtle graphics tutorial (GH-107072) (#107109)
Diffstat (limited to 'Doc/includes')
-rw-r--r--Doc/includes/turtle-star.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/Doc/includes/turtle-star.py b/Doc/includes/turtle-star.py
deleted file mode 100644
index 1a5db76..0000000
--- a/Doc/includes/turtle-star.py
+++ /dev/null
@@ -1,10 +0,0 @@
-from turtle import *
-color('red', 'yellow')
-begin_fill()
-while True:
- forward(200)
- left(170)
- if abs(pos()) < 1:
- break
-end_fill()
-done()