Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/__init__.py
blob: f11b35ab43ec5a6689424873397297e78d3a64a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
"""
An educational environment for learning Python, suitable for beginners
and children. Inspired by LOGO.

Call `run()` to run it.

PythonTurtle aims to be the most low-threshold way for learning or
teaching Python. The user is given command of an interactive Python
shell, similar to IDLE, and is able to use Python functions to move a
turtle that is displayed on the screen. An illustrated help screen
demonstrates how to move the turtle and introduces the student to the
basics of Python programming.
"""

from pythonturtle import run

if __name__=="__main__":
    run()