Python sandbox.
>Home page.
>About me.
>My projects.
>Python sandbox.
# This uses the https://skulpt.org project. # It is a sub-set of Python 3 designed to work # on browsers with javascript support. import turtle t = turtle.Turtle() t.color("red") t.begin_fill() for _ in range(4): t.forward(100) t.left(90) t.end_fill() print("Print statement example.")
Run