Python modules
From ZENotes
(Difference between revisions)
(Created page with " Python snippets Python glossary Python modules") |
|||
Line 1: | Line 1: | ||
+ | '''Turtle graphics''', as it is known, is based on a very simple metaphor. Imagine that you have a turtle that understands English. You can tell your turtle to do simple commands such as go forward and turn right. As the turtle moves around, if its tail is down touching the ground, it will draw a line (leave a trail behind) as it moves. If you tell your turtle to lift up its tail it can still move around but will not leave a trail. As you will see, you can make some pretty amazing drawings with this simple capability. | ||
+ | |||
+ | Back to [[Python]] | ||
[[Python snippets]] | [[Python snippets]] |
Latest revision as of 10:23, 5 May 2013
Turtle graphics, as it is known, is based on a very simple metaphor. Imagine that you have a turtle that understands English. You can tell your turtle to do simple commands such as go forward and turn right. As the turtle moves around, if its tail is down touching the ground, it will draw a line (leave a trail behind) as it moves. If you tell your turtle to lift up its tail it can still move around but will not leave a trail. As you will see, you can make some pretty amazing drawings with this simple capability.
Back to Python
Python modules