diff options
Diffstat (limited to 'Lib/turtledemo/forest.py')
-rw-r--r-- | Lib/turtledemo/forest.py | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/Lib/turtledemo/forest.py b/Lib/turtledemo/forest.py index cac55322382..e1fa85a577f 100644 --- a/Lib/turtledemo/forest.py +++ b/Lib/turtledemo/forest.py @@ -1,14 +1,11 @@ -""" turtlegraphics-example-suite: +"""turtledemo/forest.py - tdemo_forest.py +Displays a 'forest' of 3 breadth-first trees, +similar to the one in tree.py. +For further details, see tree.py. -Displays a 'forest' of 3 breadth-first-trees -similar to the one in tree. -For further remarks see tree.py - -This example is a 'breadth-first'-rewrite of -a Logo program written by Erich Neuwirth. See -http://homepage.univie.ac.at/erich.neuwirth/ +This example is a breadth-first rewrite of +a Logo program by Erich Neuwirth. """ from turtle import Turtle, colormode, tracer, mainloop from random import randrange |