GitXplorerGitXplorer
t

mobilechelonian

public
101 stars
38 forks
13 issues

Commits

List of commits on branch master.
Verified
76d1c299d43000912697d21d26ca61d392a19fc8

Merge pull request #27 from jablka/patch-1

ttakluyver committed 2 years ago
Verified
1494dd8dea1f08c6e9307735d872e39ce7d9643c

Update README.rst

jjablka committed 2 years ago
Verified
469133f155f8998c800025bbb880a2daa19c656d

Merge pull request #21 from das-g/patch-1

ttakluyver committed 4 years ago
Verified
8871efdac33d1e12d54e0bc3074fe20e1bf866ee

fix module name in "Help!" alert box

ddas-g committed 4 years ago
Verified
48fe5eec49af1304cf6b8401d545657523784e3a

Summarise installation in README

ttakluyver committed 5 years ago
Unverified
f90afaa5fcec5a1d4a329f735d8ad047bae30312

Merge pull request #11 from hoogenm/master

ttakluyver committed 7 years ago

README

The README file for this repository.

"Nevertheless... the turtle moves!" - Small Gods, by Terry Pratchett

This is a Turtle module for the Jupyter Notebook. It's based on code by aspidites <https://github.com/macewanCMPT395/aspidites>, one of two groups at Macewan University <http://macewan.ca/wcm/index.htm> that built Turtle as a class assignment (the other was PACattack <https://github.com/macewanCS/PACattack>_; I could have based this on either, but I had to pick one).

Install it in a terminal/command prompt with::

pip install mobilechelonian

Using it looks like this::

from mobilechelonian import Turtle
t = Turtle()
t.speed(5)
colours=["red","blue","yellow","brown","black","purple","green"]

t.penup(); t.left(90); t.forward(200);t.right(90);t.pendown()
for i in range (0,18):
    t.pencolor(colours[i%7])
    t.right(20)
    t.forward(50)

t.right(180)
t.home()

.. image:: sample.png

.. image:: http://mybinder.org/badge.svg :target: https://beta.mybinder.org/v2/gh/takluyver/mobilechelonian/master?filepath=try.ipynb