I Love Python. I Learn Python. I Teach Python. I Am a Python.

2014/08/07

如何教 Turtle Graphics

如何教 Turtle Graphics


https://docs.python.org/3.3/library/turtle.html

1. 開門見山

../_images/turtle-star.png

from turtle import *
color('red', 'yellow')
begin_fill()
while True:
    forward(200)
    left(170)
    if abs(pos()) < 1:
        break
end_fill()
done()

...
...
...

2. 空中鳥瞰


24.1.2. Overview of available Turtle and Screen methods

:
:
:

沒有留言:

張貼留言