blob: 0735dbc359488746f55ecf5dc847b070b2fda43e [file] [log] [blame]
Martin v. Löwis87184592008-06-04 06:29:55 +00001========================================
Georg Brandl6634bf22008-05-20 07:13:37 +00002:mod:`turtle` --- Turtle graphics for Tk
3========================================
Georg Brandl8ec7f652007-08-15 14:28:01 +00004
Martin v. Löwis060cd1e2008-07-13 20:31:49 +00005.. module:: turtle
6 :synopsis: Turtle graphics for Tk
7.. sectionauthor:: Gregor Lingl <gregor.lingl@aon.at>
8
R. David Murrayb01c6e52009-04-30 12:42:32 +00009.. testsetup:: default
10
11 from turtle import *
12 turtle = Turtle()
13
Martin v. Löwis87184592008-06-04 06:29:55 +000014Introduction
Georg Brandla2b34b82008-06-04 11:17:26 +000015============
Martin v. Löwis87184592008-06-04 06:29:55 +000016
Georg Brandla2b34b82008-06-04 11:17:26 +000017Turtle graphics is a popular way for introducing programming to kids. It was
18part of the original Logo programming language developed by Wally Feurzig and
19Seymour Papert in 1966.
Martin v. Löwis87184592008-06-04 06:29:55 +000020
Georg Brandla2b34b82008-06-04 11:17:26 +000021Imagine a robotic turtle starting at (0, 0) in the x-y plane. Give it the
22command ``turtle.forward(15)``, and it moves (on-screen!) 15 pixels in the
23direction it is facing, drawing a line as it moves. Give it the command
24``turtle.left(25)``, and it rotates in-place 25 degrees clockwise.
Martin v. Löwis87184592008-06-04 06:29:55 +000025
Georg Brandla2b34b82008-06-04 11:17:26 +000026By combining together these and similar commands, intricate shapes and pictures
27can easily be drawn.
Martin v. Löwis87184592008-06-04 06:29:55 +000028
Georg Brandla2b34b82008-06-04 11:17:26 +000029The :mod:`turtle` module is an extended reimplementation of the same-named
30module from the Python standard distribution up to version Python 2.5.
Martin v. Löwis87184592008-06-04 06:29:55 +000031
Georg Brandla2b34b82008-06-04 11:17:26 +000032It tries to keep the merits of the old turtle module and to be (nearly) 100%
33compatible with it. This means in the first place to enable the learning
34programmer to use all the commands, classes and methods interactively when using
35the module from within IDLE run with the ``-n`` switch.
Martin v. Löwis87184592008-06-04 06:29:55 +000036
Georg Brandla2b34b82008-06-04 11:17:26 +000037The turtle module provides turtle graphics primitives, in both object-oriented
38and procedure-oriented ways. Because it uses :mod:`Tkinter` for the underlying
39graphics, it needs a version of python installed with Tk support.
Martin v. Löwis87184592008-06-04 06:29:55 +000040
Georg Brandla2b34b82008-06-04 11:17:26 +000041The object-oriented interface uses essentially two+two classes:
Martin v. Löwis87184592008-06-04 06:29:55 +000042
Georg Brandla2b34b82008-06-04 11:17:26 +0000431. The :class:`TurtleScreen` class defines graphics windows as a playground for
44 the drawing turtles. Its constructor needs a :class:`Tkinter.Canvas` or a
45 :class:`ScrolledCanvas` as argument. It should be used when :mod:`turtle` is
46 used as part of some application.
Martin v. Löwis87184592008-06-04 06:29:55 +000047
Martin v. Löwise563aa42008-09-29 22:09:07 +000048 The function :func:`Screen` returns a singleton object of a
49 :class:`TurtleScreen` subclass. This function should be used when
50 :mod:`turtle` is used as a standalone tool for doing graphics.
51 As a singleton object, inheriting from its class is not possible.
Martin v. Löwis87184592008-06-04 06:29:55 +000052
Georg Brandla2b34b82008-06-04 11:17:26 +000053 All methods of TurtleScreen/Screen also exist as functions, i.e. as part of
54 the procedure-oriented interface.
Martin v. Löwis87184592008-06-04 06:29:55 +000055
Georg Brandla2b34b82008-06-04 11:17:26 +0000562. :class:`RawTurtle` (alias: :class:`RawPen`) defines Turtle objects which draw
57 on a :class:`TurtleScreen`. Its constructor needs a Canvas, ScrolledCanvas
58 or TurtleScreen as argument, so the RawTurtle objects know where to draw.
Martin v. Löwis87184592008-06-04 06:29:55 +000059
Georg Brandla2b34b82008-06-04 11:17:26 +000060 Derived from RawTurtle is the subclass :class:`Turtle` (alias: :class:`Pen`),
61 which draws on "the" :class:`Screen` - instance which is automatically
62 created, if not already present.
Martin v. Löwis87184592008-06-04 06:29:55 +000063
Georg Brandla2b34b82008-06-04 11:17:26 +000064 All methods of RawTurtle/Turtle also exist as functions, i.e. part of the
65 procedure-oriented interface.
Martin v. Löwis87184592008-06-04 06:29:55 +000066
Georg Brandla2b34b82008-06-04 11:17:26 +000067The procedural interface provides functions which are derived from the methods
68of the classes :class:`Screen` and :class:`Turtle`. They have the same names as
Georg Brandle83a4ad2009-03-13 19:03:58 +000069the corresponding methods. A screen object is automatically created whenever a
Georg Brandla2b34b82008-06-04 11:17:26 +000070function derived from a Screen method is called. An (unnamed) turtle object is
71automatically created whenever any of the functions derived from a Turtle method
72is called.
Martin v. Löwis87184592008-06-04 06:29:55 +000073
Georg Brandla2b34b82008-06-04 11:17:26 +000074To use multiple turtles an a screen one has to use the object-oriented interface.
Martin v. Löwis87184592008-06-04 06:29:55 +000075
Georg Brandla2b34b82008-06-04 11:17:26 +000076.. note::
77 In the following documentation the argument list for functions is given.
78 Methods, of course, have the additional first argument *self* which is
79 omitted here.
Martin v. Löwis87184592008-06-04 06:29:55 +000080
Martin v. Löwis87184592008-06-04 06:29:55 +000081
Georg Brandla2b34b82008-06-04 11:17:26 +000082Overview over available Turtle and Screen methods
83=================================================
Martin v. Löwis87184592008-06-04 06:29:55 +000084
Georg Brandla2b34b82008-06-04 11:17:26 +000085Turtle methods
Martin v. Löwis87184592008-06-04 06:29:55 +000086--------------
Georg Brandl8ec7f652007-08-15 14:28:01 +000087
Georg Brandla2b34b82008-06-04 11:17:26 +000088Turtle motion
89 Move and draw
90 | :func:`forward` | :func:`fd`
91 | :func:`backward` | :func:`bk` | :func:`back`
92 | :func:`right` | :func:`rt`
93 | :func:`left` | :func:`lt`
94 | :func:`goto` | :func:`setpos` | :func:`setposition`
95 | :func:`setx`
96 | :func:`sety`
97 | :func:`setheading` | :func:`seth`
98 | :func:`home`
99 | :func:`circle`
100 | :func:`dot`
101 | :func:`stamp`
102 | :func:`clearstamp`
103 | :func:`clearstamps`
104 | :func:`undo`
105 | :func:`speed`
Georg Brandl8ec7f652007-08-15 14:28:01 +0000106
Georg Brandla2b34b82008-06-04 11:17:26 +0000107 Tell Turtle's state
108 | :func:`position` | :func:`pos`
109 | :func:`towards`
110 | :func:`xcor`
111 | :func:`ycor`
112 | :func:`heading`
113 | :func:`distance`
Georg Brandl8ec7f652007-08-15 14:28:01 +0000114
Georg Brandla2b34b82008-06-04 11:17:26 +0000115 Setting and measurement
116 | :func:`degrees`
117 | :func:`radians`
118
119Pen control
120 Drawing state
121 | :func:`pendown` | :func:`pd` | :func:`down`
122 | :func:`penup` | :func:`pu` | :func:`up`
123 | :func:`pensize` | :func:`width`
124 | :func:`pen`
125 | :func:`isdown`
126
127 Color control
128 | :func:`color`
129 | :func:`pencolor`
130 | :func:`fillcolor`
131
132 Filling
133 | :func:`fill`
134 | :func:`begin_fill`
135 | :func:`end_fill`
136
137 More drawing control
138 | :func:`reset`
139 | :func:`clear`
140 | :func:`write`
141
142Turtle state
143 Visibility
144 | :func:`showturtle` | :func:`st`
145 | :func:`hideturtle` | :func:`ht`
146 | :func:`isvisible`
147
148 Appearance
149 | :func:`shape`
150 | :func:`resizemode`
151 | :func:`shapesize` | :func:`turtlesize`
152 | :func:`settiltangle`
153 | :func:`tiltangle`
154 | :func:`tilt`
155
156Using events
157 | :func:`onclick`
158 | :func:`onrelease`
159 | :func:`ondrag`
160
161Special Turtle methods
162 | :func:`begin_poly`
163 | :func:`end_poly`
164 | :func:`get_poly`
165 | :func:`clone`
166 | :func:`getturtle` | :func:`getpen`
167 | :func:`getscreen`
168 | :func:`setundobuffer`
169 | :func:`undobufferentries`
170 | :func:`tracer`
171 | :func:`window_width`
172 | :func:`window_height`
Georg Brandl8ec7f652007-08-15 14:28:01 +0000173
Georg Brandl8ec7f652007-08-15 14:28:01 +0000174
Georg Brandla2b34b82008-06-04 11:17:26 +0000175Methods of TurtleScreen/Screen
176------------------------------
177
178Window control
179 | :func:`bgcolor`
180 | :func:`bgpic`
181 | :func:`clear` | :func:`clearscreen`
182 | :func:`reset` | :func:`resetscreen`
183 | :func:`screensize`
184 | :func:`setworldcoordinates`
185
186Animation control
187 | :func:`delay`
188 | :func:`tracer`
189 | :func:`update`
190
191Using screen events
192 | :func:`listen`
193 | :func:`onkey`
194 | :func:`onclick` | :func:`onscreenclick`
195 | :func:`ontimer`
196
197Settings and special methods
198 | :func:`mode`
199 | :func:`colormode`
200 | :func:`getcanvas`
201 | :func:`getshapes`
202 | :func:`register_shape` | :func:`addshape`
203 | :func:`turtles`
204 | :func:`window_height`
205 | :func:`window_width`
206
207Methods specific to Screen
208 | :func:`bye`
209 | :func:`exitonclick`
210 | :func:`setup`
211 | :func:`title`
Georg Brandl8ec7f652007-08-15 14:28:01 +0000212
Georg Brandl8ec7f652007-08-15 14:28:01 +0000213
Georg Brandla2b34b82008-06-04 11:17:26 +0000214Methods of RawTurtle/Turtle and corresponding functions
215=======================================================
Georg Brandl8ec7f652007-08-15 14:28:01 +0000216
Georg Brandla2b34b82008-06-04 11:17:26 +0000217Most of the examples in this section refer to a Turtle instance called
218``turtle``.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000219
Georg Brandla2b34b82008-06-04 11:17:26 +0000220Turtle motion
221-------------
222
223.. function:: forward(distance)
224 fd(distance)
225
226 :param distance: a number (integer or float)
227
228 Move the turtle forward by the specified *distance*, in the direction the
229 turtle is headed.
230
R. David Murrayb01c6e52009-04-30 12:42:32 +0000231 .. doctest::
232
233 >>> turtle.position()
234 (0.00,0.00)
235 >>> turtle.forward(25)
236 >>> turtle.position()
237 (25.00,0.00)
238 >>> turtle.forward(-75)
239 >>> turtle.position()
240 (-50.00,0.00)
Georg Brandl8ec7f652007-08-15 14:28:01 +0000241
242
Georg Brandla2b34b82008-06-04 11:17:26 +0000243.. function:: back(distance)
244 bk(distance)
245 backward(distance)
Georg Brandl8ec7f652007-08-15 14:28:01 +0000246
Georg Brandla2b34b82008-06-04 11:17:26 +0000247 :param distance: a number
Georg Brandl8ec7f652007-08-15 14:28:01 +0000248
Georg Brandla2b34b82008-06-04 11:17:26 +0000249 Move the turtle backward by *distance*, opposite to the direction the
250 turtle is headed. Do not change the turtle's heading.
251
R. David Murrayb01c6e52009-04-30 12:42:32 +0000252 .. doctest::
253 :hide:
254
255 >>> turtle.goto(0, 0)
256
257 .. doctest::
258
259 >>> turtle.position()
260 (0.00,0.00)
261 >>> turtle.backward(30)
262 >>> turtle.position()
263 (-30.00,0.00)
Georg Brandl8ec7f652007-08-15 14:28:01 +0000264
Georg Brandl8ec7f652007-08-15 14:28:01 +0000265
Georg Brandla2b34b82008-06-04 11:17:26 +0000266.. function:: right(angle)
267 rt(angle)
Georg Brandl8ec7f652007-08-15 14:28:01 +0000268
Georg Brandla2b34b82008-06-04 11:17:26 +0000269 :param angle: a number (integer or float)
Georg Brandl8ec7f652007-08-15 14:28:01 +0000270
Georg Brandla2b34b82008-06-04 11:17:26 +0000271 Turn turtle right by *angle* units. (Units are by default degrees, but
272 can be set via the :func:`degrees` and :func:`radians` functions.) Angle
273 orientation depends on the turtle mode, see :func:`mode`.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000274
R. David Murrayb01c6e52009-04-30 12:42:32 +0000275 .. doctest::
276 :hide:
277
278 >>> turtle.setheading(22)
279
280 .. doctest::
281
282 >>> turtle.heading()
283 22.0
284 >>> turtle.right(45)
285 >>> turtle.heading()
286 337.0
Georg Brandl8ec7f652007-08-15 14:28:01 +0000287
Georg Brandl8ec7f652007-08-15 14:28:01 +0000288
Georg Brandla2b34b82008-06-04 11:17:26 +0000289.. function:: left(angle)
290 lt(angle)
Georg Brandl8ec7f652007-08-15 14:28:01 +0000291
Georg Brandla2b34b82008-06-04 11:17:26 +0000292 :param angle: a number (integer or float)
Georg Brandl8ec7f652007-08-15 14:28:01 +0000293
Georg Brandla2b34b82008-06-04 11:17:26 +0000294 Turn turtle left by *angle* units. (Units are by default degrees, but
295 can be set via the :func:`degrees` and :func:`radians` functions.) Angle
296 orientation depends on the turtle mode, see :func:`mode`.
297
R. David Murrayb01c6e52009-04-30 12:42:32 +0000298 .. doctest::
299 :hide:
300
301 >>> turtle.setheading(22)
302
303 .. doctest::
304
305 >>> turtle.heading()
306 22.0
307 >>> turtle.left(45)
308 >>> turtle.heading()
309 67.0
310
Georg Brandla2b34b82008-06-04 11:17:26 +0000311
312.. function:: goto(x, y=None)
313 setpos(x, y=None)
314 setposition(x, y=None)
315
R. David Murrayb01c6e52009-04-30 12:42:32 +0000316 :param x: a number or a pair/vector of numbers
317 :param y: a number or ``None``
Georg Brandla2b34b82008-06-04 11:17:26 +0000318
R. David Murrayb01c6e52009-04-30 12:42:32 +0000319 If *y* is ``None``, *x* must be a pair of coordinates or a :class:`Vec2D`
320 (e.g. as returned by :func:`pos`).
Georg Brandla2b34b82008-06-04 11:17:26 +0000321
R. David Murrayb01c6e52009-04-30 12:42:32 +0000322 Move turtle to an absolute position. If the pen is down, draw line. Do
323 not change the turtle's orientation.
Georg Brandla2b34b82008-06-04 11:17:26 +0000324
R. David Murrayb01c6e52009-04-30 12:42:32 +0000325 .. doctest::
326 :hide:
327
328 >>> turtle.goto(0, 0)
329
330 .. doctest::
331
332 >>> tp = turtle.pos()
333 >>> tp
334 (0.00,0.00)
335 >>> turtle.setpos(60,30)
336 >>> turtle.pos()
337 (60.00,30.00)
338 >>> turtle.setpos((20,80))
339 >>> turtle.pos()
340 (20.00,80.00)
341 >>> turtle.setpos(tp)
342 >>> turtle.pos()
343 (0.00,0.00)
Georg Brandl8ec7f652007-08-15 14:28:01 +0000344
Georg Brandl8ec7f652007-08-15 14:28:01 +0000345
Georg Brandla2b34b82008-06-04 11:17:26 +0000346.. function:: setx(x)
Georg Brandl8ec7f652007-08-15 14:28:01 +0000347
Georg Brandla2b34b82008-06-04 11:17:26 +0000348 :param x: a number (integer or float)
Georg Brandl8ec7f652007-08-15 14:28:01 +0000349
Georg Brandla2b34b82008-06-04 11:17:26 +0000350 Set the turtle's first coordinate to *x*, leave second coordinate
351 unchanged.
352
R. David Murrayb01c6e52009-04-30 12:42:32 +0000353 .. doctest::
354 :hide:
355
356 >>> turtle.goto(0, 240)
357
358 .. doctest::
359
360 >>> turtle.position()
361 (0.00,240.00)
362 >>> turtle.setx(10)
363 >>> turtle.position()
364 (10.00,240.00)
Georg Brandla2b34b82008-06-04 11:17:26 +0000365
366
367.. function:: sety(y)
368
369 :param y: a number (integer or float)
370
Andrew M. Kuchling847c43a2009-01-13 13:40:54 +0000371 Set the turtle's second coordinate to *y*, leave first coordinate unchanged.
Georg Brandla2b34b82008-06-04 11:17:26 +0000372
R. David Murrayb01c6e52009-04-30 12:42:32 +0000373 .. doctest::
374 :hide:
375
376 >>> turtle.goto(0, 40)
377
378 .. doctest::
379
380 >>> turtle.position()
381 (0.00,40.00)
382 >>> turtle.sety(-10)
383 >>> turtle.position()
384 (0.00,-10.00)
Georg Brandla2b34b82008-06-04 11:17:26 +0000385
386
387.. function:: setheading(to_angle)
388 seth(to_angle)
389
390 :param to_angle: a number (integer or float)
391
392 Set the orientation of the turtle to *to_angle*. Here are some common
393 directions in degrees:
394
395 =================== ====================
396 standard mode logo mode
397 =================== ====================
398 0 - east 0 - north
399 90 - north 90 - east
400 180 - west 180 - south
401 270 - south 270 - west
402 =================== ====================
403
R. David Murrayb01c6e52009-04-30 12:42:32 +0000404 .. doctest::
405
406 >>> turtle.setheading(90)
407 >>> turtle.heading()
408 90.0
Georg Brandla2b34b82008-06-04 11:17:26 +0000409
410
411.. function:: home()
412
413 Move turtle to the origin -- coordinates (0,0) -- and set its heading to
414 its start-orientation (which depends on the mode, see :func:`mode`).
415
R. David Murrayb01c6e52009-04-30 12:42:32 +0000416 .. doctest::
417 :hide:
418
419 >>> turtle.setheading(90)
420 >>> turtle.goto(0, -10)
421
422 .. doctest::
423
424 >>> turtle.heading()
425 90.0
426 >>> turtle.position()
427 (0.00,-10.00)
428 >>> turtle.home()
429 >>> turtle.position()
430 (0.00,0.00)
431 >>> turtle.heading()
432 0.0
433
Georg Brandla2b34b82008-06-04 11:17:26 +0000434
435.. function:: circle(radius, extent=None, steps=None)
436
437 :param radius: a number
438 :param extent: a number (or ``None``)
439 :param steps: an integer (or ``None``)
440
441 Draw a circle with given *radius*. The center is *radius* units left of
442 the turtle; *extent* -- an angle -- determines which part of the circle
443 is drawn. If *extent* is not given, draw the entire circle. If *extent*
444 is not a full circle, one endpoint of the arc is the current pen
445 position. Draw the arc in counterclockwise direction if *radius* is
446 positive, otherwise in clockwise direction. Finally the direction of the
447 turtle is changed by the amount of *extent*.
448
449 As the circle is approximated by an inscribed regular polygon, *steps*
450 determines the number of steps to use. If not given, it will be
451 calculated automatically. May be used to draw regular polygons.
452
R. David Murrayb01c6e52009-04-30 12:42:32 +0000453 .. doctest::
454
455 >>> turtle.home()
456 >>> turtle.position()
457 (0.00,0.00)
458 >>> turtle.heading()
459 0.0
460 >>> turtle.circle(50)
461 >>> turtle.position()
462 (-0.00,0.00)
463 >>> turtle.heading()
464 0.0
465 >>> turtle.circle(120, 180) # draw a semicircle
466 >>> turtle.position()
467 (0.00,240.00)
468 >>> turtle.heading()
469 180.0
Georg Brandla2b34b82008-06-04 11:17:26 +0000470
471
472.. function:: dot(size=None, *color)
473
474 :param size: an integer >= 1 (if given)
475 :param color: a colorstring or a numeric color tuple
476
477 Draw a circular dot with diameter *size*, using *color*. If *size* is
478 not given, the maximum of pensize+4 and 2*pensize is used.
479
R. David Murrayb01c6e52009-04-30 12:42:32 +0000480
481 .. doctest::
482
483 >>> turtle.home()
484 >>> turtle.dot()
485 >>> turtle.fd(50); turtle.dot(20, "blue"); turtle.fd(50)
486 >>> turtle.position()
487 (100.00,-0.00)
488 >>> turtle.heading()
489 0.0
Georg Brandla2b34b82008-06-04 11:17:26 +0000490
491
492.. function:: stamp()
493
494 Stamp a copy of the turtle shape onto the canvas at the current turtle
495 position. Return a stamp_id for that stamp, which can be used to delete
496 it by calling ``clearstamp(stamp_id)``.
497
R. David Murrayb01c6e52009-04-30 12:42:32 +0000498 .. doctest::
499
500 >>> turtle.color("blue")
501 >>> turtle.stamp()
502 11
503 >>> turtle.fd(50)
Georg Brandla2b34b82008-06-04 11:17:26 +0000504
505
506.. function:: clearstamp(stampid)
507
508 :param stampid: an integer, must be return value of previous
509 :func:`stamp` call
510
511 Delete stamp with given *stampid*.
512
R. David Murrayb01c6e52009-04-30 12:42:32 +0000513 .. doctest::
514
515 >>> turtle.position()
516 (150.00,-0.00)
517 >>> turtle.color("blue")
518 >>> astamp = turtle.stamp()
519 >>> turtle.fd(50)
520 >>> turtle.position()
521 (200.00,-0.00)
522 >>> turtle.clearstamp(astamp)
523 >>> turtle.position()
524 (200.00,-0.00)
Georg Brandla2b34b82008-06-04 11:17:26 +0000525
526
527.. function:: clearstamps(n=None)
528
529 :param n: an integer (or ``None``)
530
531 Delete all or first/last *n* of turtle's stamps. If *n* is None, delete
532 all stamps, if *n* > 0 delete first *n* stamps, else if *n* < 0 delete
533 last *n* stamps.
534
R. David Murrayb01c6e52009-04-30 12:42:32 +0000535 .. doctest::
536
537 >>> for i in range(8):
538 ... turtle.stamp(); turtle.fd(30)
539 13
540 14
541 15
542 16
543 17
544 18
545 19
546 20
547 >>> turtle.clearstamps(2)
548 >>> turtle.clearstamps(-2)
549 >>> turtle.clearstamps()
Georg Brandla2b34b82008-06-04 11:17:26 +0000550
551
552.. function:: undo()
553
554 Undo (repeatedly) the last turtle action(s). Number of available
555 undo actions is determined by the size of the undobuffer.
556
R. David Murrayb01c6e52009-04-30 12:42:32 +0000557 .. doctest::
558
559 >>> for i in range(4):
560 ... turtle.fd(50); turtle.lt(80)
561 ...
562 >>> for i in range(8):
563 ... turtle.undo()
Georg Brandla2b34b82008-06-04 11:17:26 +0000564
565
566.. function:: speed(speed=None)
567
568 :param speed: an integer in the range 0..10 or a speedstring (see below)
569
570 Set the turtle's speed to an integer value in the range 0..10. If no
571 argument is given, return current speed.
572
573 If input is a number greater than 10 or smaller than 0.5, speed is set
574 to 0. Speedstrings are mapped to speedvalues as follows:
575
576 * "fastest": 0
577 * "fast": 10
578 * "normal": 6
579 * "slow": 3
580 * "slowest": 1
581
582 Speeds from 1 to 10 enforce increasingly faster animation of line drawing
583 and turtle turning.
584
585 Attention: *speed* = 0 means that *no* animation takes
586 place. forward/back makes turtle jump and likewise left/right make the
587 turtle turn instantly.
588
R. David Murrayb01c6e52009-04-30 12:42:32 +0000589 .. doctest::
590
591 >>> turtle.speed()
592 3
593 >>> turtle.speed('normal')
594 >>> turtle.speed()
595 6
596 >>> turtle.speed(9)
597 >>> turtle.speed()
598 9
Georg Brandla2b34b82008-06-04 11:17:26 +0000599
600
601Tell Turtle's state
Martin v. Löwis87184592008-06-04 06:29:55 +0000602-------------------
Georg Brandl8ec7f652007-08-15 14:28:01 +0000603
Georg Brandla2b34b82008-06-04 11:17:26 +0000604.. function:: position()
605 pos()
Georg Brandl8ec7f652007-08-15 14:28:01 +0000606
Georg Brandla2b34b82008-06-04 11:17:26 +0000607 Return the turtle's current location (x,y) (as a :class:`Vec2D` vector).
Georg Brandl8ec7f652007-08-15 14:28:01 +0000608
R. David Murrayb01c6e52009-04-30 12:42:32 +0000609 .. doctest::
610
611 >>> turtle.pos()
612 (440.00,-0.00)
Georg Brandl8ec7f652007-08-15 14:28:01 +0000613
Georg Brandl8ec7f652007-08-15 14:28:01 +0000614
Georg Brandla2b34b82008-06-04 11:17:26 +0000615.. function:: towards(x, y=None)
Georg Brandl8ec7f652007-08-15 14:28:01 +0000616
Georg Brandla2b34b82008-06-04 11:17:26 +0000617 :param x: a number or a pair/vector of numbers or a turtle instance
618 :param y: a number if *x* is a number, else ``None``
Georg Brandl8ec7f652007-08-15 14:28:01 +0000619
Georg Brandla2b34b82008-06-04 11:17:26 +0000620 Return the angle between the line from turtle position to position specified
621 by (x,y), the vector or the other turtle. This depends on the turtle's start
622 orientation which depends on the mode - "standard"/"world" or "logo").
Georg Brandl8ec7f652007-08-15 14:28:01 +0000623
R. David Murrayb01c6e52009-04-30 12:42:32 +0000624 .. doctest::
625
626 >>> turtle.goto(10, 10)
627 >>> turtle.towards(0,0)
628 225.0
Georg Brandl8ec7f652007-08-15 14:28:01 +0000629
630
Georg Brandla2b34b82008-06-04 11:17:26 +0000631.. function:: xcor()
Georg Brandl8ec7f652007-08-15 14:28:01 +0000632
Georg Brandla2b34b82008-06-04 11:17:26 +0000633 Return the turtle's x coordinate.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000634
R. David Murrayb01c6e52009-04-30 12:42:32 +0000635 .. doctest::
636
637 >>> turtle.home()
638 >>> turtle.left(50)
639 >>> turtle.forward(100)
640 >>> turtle.pos()
641 (64.28,76.60)
642 >>> print turtle.xcor()
643 64.2787609687
Georg Brandl8ec7f652007-08-15 14:28:01 +0000644
Georg Brandl8ec7f652007-08-15 14:28:01 +0000645
Georg Brandla2b34b82008-06-04 11:17:26 +0000646.. function:: ycor()
647
648 Return the turtle's y coordinate.
649
R. David Murrayb01c6e52009-04-30 12:42:32 +0000650 .. doctest::
651
652 >>> turtle.home()
653 >>> turtle.left(60)
654 >>> turtle.forward(100)
655 >>> print turtle.pos()
656 (50.00,86.60)
657 >>> print turtle.ycor()
658 86.6025403784
Georg Brandl8ec7f652007-08-15 14:28:01 +0000659
Georg Brandl8ec7f652007-08-15 14:28:01 +0000660
Georg Brandla2b34b82008-06-04 11:17:26 +0000661.. function:: heading()
Georg Brandl8ec7f652007-08-15 14:28:01 +0000662
Georg Brandla2b34b82008-06-04 11:17:26 +0000663 Return the turtle's current heading (value depends on the turtle mode, see
664 :func:`mode`).
Georg Brandl8ec7f652007-08-15 14:28:01 +0000665
R. David Murrayb01c6e52009-04-30 12:42:32 +0000666 .. doctest::
667
668 >>> turtle.home()
669 >>> turtle.left(67)
670 >>> turtle.heading()
671 67.0
Georg Brandl8ec7f652007-08-15 14:28:01 +0000672
673
Georg Brandla2b34b82008-06-04 11:17:26 +0000674.. function:: distance(x, y=None)
Georg Brandl8ec7f652007-08-15 14:28:01 +0000675
Georg Brandla2b34b82008-06-04 11:17:26 +0000676 :param x: a number or a pair/vector of numbers or a turtle instance
677 :param y: a number if *x* is a number, else ``None``
Georg Brandl8ec7f652007-08-15 14:28:01 +0000678
Georg Brandla2b34b82008-06-04 11:17:26 +0000679 Return the distance from the turtle to (x,y), the given vector, or the given
680 other turtle, in turtle step units.
681
R. David Murrayb01c6e52009-04-30 12:42:32 +0000682 .. doctest::
683
684 >>> turtle.home()
685 >>> turtle.distance(30,40)
686 50.0
687 >>> turtle.distance((30,40))
688 50.0
689 >>> joe = Turtle()
690 >>> joe.forward(77)
691 >>> turtle.distance(joe)
692 77.0
Georg Brandl8ec7f652007-08-15 14:28:01 +0000693
Georg Brandl8ec7f652007-08-15 14:28:01 +0000694
Georg Brandla2b34b82008-06-04 11:17:26 +0000695Settings for measurement
696------------------------
Georg Brandl8ec7f652007-08-15 14:28:01 +0000697
Georg Brandla2b34b82008-06-04 11:17:26 +0000698.. function:: degrees(fullcircle=360.0)
699
700 :param fullcircle: a number
701
702 Set angle measurement units, i.e. set number of "degrees" for a full circle.
703 Default value is 360 degrees.
704
R. David Murrayb01c6e52009-04-30 12:42:32 +0000705 .. doctest::
706
707 >>> turtle.home()
708 >>> turtle.left(90)
709 >>> turtle.heading()
710 90.0
711 >>> turtle.degrees(400.0) # angle measurement in gon
712 >>> turtle.heading()
713 100.0
714 >>> turtle.degrees(360)
715 >>> turtle.heading()
716 90.0
Georg Brandl8ec7f652007-08-15 14:28:01 +0000717
Georg Brandl8ec7f652007-08-15 14:28:01 +0000718
Georg Brandla2b34b82008-06-04 11:17:26 +0000719.. function:: radians()
720
721 Set the angle measurement units to radians. Equivalent to
722 ``degrees(2*math.pi)``.
723
R. David Murrayb01c6e52009-04-30 12:42:32 +0000724 .. doctest::
725
726 >>> turtle.home()
727 >>> turtle.left(90)
728 >>> turtle.heading()
729 90.0
730 >>> turtle.radians()
731 >>> turtle.heading()
732 1.5707963267948966
733
734 .. doctest::
735 :hide:
736
737 >>> turtle.degrees(360)
Georg Brandl8ec7f652007-08-15 14:28:01 +0000738
739
Georg Brandla2b34b82008-06-04 11:17:26 +0000740Pen control
741-----------
Georg Brandl8ec7f652007-08-15 14:28:01 +0000742
Georg Brandla2b34b82008-06-04 11:17:26 +0000743Drawing state
744~~~~~~~~~~~~~
745
746.. function:: pendown()
747 pd()
748 down()
749
750 Pull the pen down -- drawing when moving.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000751
752
Georg Brandla2b34b82008-06-04 11:17:26 +0000753.. function:: penup()
754 pu()
755 up()
Georg Brandl8ec7f652007-08-15 14:28:01 +0000756
Georg Brandla2b34b82008-06-04 11:17:26 +0000757 Pull the pen up -- no drawing when moving.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000758
Georg Brandl8ec7f652007-08-15 14:28:01 +0000759
Georg Brandla2b34b82008-06-04 11:17:26 +0000760.. function:: pensize(width=None)
761 width(width=None)
Georg Brandl8ec7f652007-08-15 14:28:01 +0000762
Georg Brandla2b34b82008-06-04 11:17:26 +0000763 :param width: a positive number
764
765 Set the line thickness to *width* or return it. If resizemode is set to
766 "auto" and turtleshape is a polygon, that polygon is drawn with the same line
767 thickness. If no argument is given, the current pensize is returned.
768
R. David Murrayb01c6e52009-04-30 12:42:32 +0000769 .. doctest::
770
771 >>> turtle.pensize()
772 1
773 >>> turtle.pensize(10) # from here on lines of width 10 are drawn
Georg Brandl8ec7f652007-08-15 14:28:01 +0000774
Georg Brandl8ec7f652007-08-15 14:28:01 +0000775
Georg Brandla2b34b82008-06-04 11:17:26 +0000776.. function:: pen(pen=None, **pendict)
Georg Brandl8ec7f652007-08-15 14:28:01 +0000777
Georg Brandla2b34b82008-06-04 11:17:26 +0000778 :param pen: a dictionary with some or all of the below listed keys
779 :param pendict: one or more keyword-arguments with the below listed keys as keywords
Georg Brandl8ec7f652007-08-15 14:28:01 +0000780
Georg Brandla2b34b82008-06-04 11:17:26 +0000781 Return or set the pen's attributes in a "pen-dictionary" with the following
782 key/value pairs:
783
784 * "shown": True/False
785 * "pendown": True/False
786 * "pencolor": color-string or color-tuple
787 * "fillcolor": color-string or color-tuple
788 * "pensize": positive number
789 * "speed": number in range 0..10
790 * "resizemode": "auto" or "user" or "noresize"
791 * "stretchfactor": (positive number, positive number)
792 * "outline": positive number
793 * "tilt": number
794
R. David Murrayb01c6e52009-04-30 12:42:32 +0000795 This dictionary can be used as argument for a subsequent call to :func:`pen`
Georg Brandla2b34b82008-06-04 11:17:26 +0000796 to restore the former pen-state. Moreover one or more of these attributes
797 can be provided as keyword-arguments. This can be used to set several pen
798 attributes in one statement.
799
R. David Murrayb01c6e52009-04-30 12:42:32 +0000800 .. doctest::
801 :options: +NORMALIZE_WHITESPACE
802
803 >>> turtle.pen(fillcolor="black", pencolor="red", pensize=10)
804 >>> sorted(turtle.pen().items())
805 [('fillcolor', 'black'), ('outline', 1), ('pencolor', 'red'),
806 ('pendown', True), ('pensize', 10), ('resizemode', 'noresize'),
807 ('shown', True), ('speed', 9), ('stretchfactor', (1, 1)), ('tilt', 0)]
808 >>> penstate=turtle.pen()
809 >>> turtle.color("yellow", "")
810 >>> turtle.penup()
811 >>> sorted(turtle.pen().items())
812 [('fillcolor', ''), ('outline', 1), ('pencolor', 'yellow'),
813 ('pendown', False), ('pensize', 10), ('resizemode', 'noresize'),
814 ('shown', True), ('speed', 9), ('stretchfactor', (1, 1)), ('tilt', 0)]
815 >>> turtle.pen(penstate, fillcolor="green")
816 >>> sorted(turtle.pen().items())
817 [('fillcolor', 'green'), ('outline', 1), ('pencolor', 'red'),
818 ('pendown', True), ('pensize', 10), ('resizemode', 'noresize'),
819 ('shown', True), ('speed', 9), ('stretchfactor', (1, 1)), ('tilt', 0)]
Georg Brandla2b34b82008-06-04 11:17:26 +0000820
821
822.. function:: isdown()
823
824 Return ``True`` if pen is down, ``False`` if it's up.
825
R. David Murrayb01c6e52009-04-30 12:42:32 +0000826 .. doctest::
827
828 >>> turtle.penup()
829 >>> turtle.isdown()
830 False
831 >>> turtle.pendown()
832 >>> turtle.isdown()
833 True
Georg Brandla2b34b82008-06-04 11:17:26 +0000834
835
836Color control
837~~~~~~~~~~~~~
838
839.. function:: pencolor(*args)
840
841 Return or set the pencolor.
842
843 Four input formats are allowed:
844
845 ``pencolor()``
R. David Murrayb01c6e52009-04-30 12:42:32 +0000846 Return the current pencolor as color specification string or
847 as a tuple (see example). May be used as input to another
Georg Brandla2b34b82008-06-04 11:17:26 +0000848 color/pencolor/fillcolor call.
849
850 ``pencolor(colorstring)``
851 Set pencolor to *colorstring*, which is a Tk color specification string,
852 such as ``"red"``, ``"yellow"``, or ``"#33cc8c"``.
853
854 ``pencolor((r, g, b))``
855 Set pencolor to the RGB color represented by the tuple of *r*, *g*, and
856 *b*. Each of *r*, *g*, and *b* must be in the range 0..colormode, where
857 colormode is either 1.0 or 255 (see :func:`colormode`).
858
859 ``pencolor(r, g, b)``
860 Set pencolor to the RGB color represented by *r*, *g*, and *b*. Each of
861 *r*, *g*, and *b* must be in the range 0..colormode.
862
863 If turtleshape is a polygon, the outline of that polygon is drawn with the
864 newly set pencolor.
865
R. David Murrayb01c6e52009-04-30 12:42:32 +0000866 .. doctest::
867
868 >>> colormode()
869 1.0
870 >>> turtle.pencolor()
871 'red'
872 >>> turtle.pencolor("brown")
873 >>> turtle.pencolor()
874 'brown'
875 >>> tup = (0.2, 0.8, 0.55)
876 >>> turtle.pencolor(tup)
877 >>> turtle.pencolor()
878 (0.20000000000000001, 0.80000000000000004, 0.5490196078431373)
879 >>> colormode(255)
880 >>> turtle.pencolor()
881 (51, 204, 140)
882 >>> turtle.pencolor('#32c18f')
883 >>> turtle.pencolor()
884 (50, 193, 143)
Georg Brandla2b34b82008-06-04 11:17:26 +0000885
886
887.. function:: fillcolor(*args)
888
889 Return or set the fillcolor.
890
891 Four input formats are allowed:
892
893 ``fillcolor()``
R. David Murrayb01c6e52009-04-30 12:42:32 +0000894 Return the current fillcolor as color specification string, possibly
895 in tuple format (see example). May be used as input to another
Georg Brandla2b34b82008-06-04 11:17:26 +0000896 color/pencolor/fillcolor call.
897
898 ``fillcolor(colorstring)``
899 Set fillcolor to *colorstring*, which is a Tk color specification string,
900 such as ``"red"``, ``"yellow"``, or ``"#33cc8c"``.
901
902 ``fillcolor((r, g, b))``
903 Set fillcolor to the RGB color represented by the tuple of *r*, *g*, and
904 *b*. Each of *r*, *g*, and *b* must be in the range 0..colormode, where
905 colormode is either 1.0 or 255 (see :func:`colormode`).
906
907 ``fillcolor(r, g, b)``
908 Set fillcolor to the RGB color represented by *r*, *g*, and *b*. Each of
909 *r*, *g*, and *b* must be in the range 0..colormode.
910
911 If turtleshape is a polygon, the interior of that polygon is drawn
912 with the newly set fillcolor.
913
R. David Murrayb01c6e52009-04-30 12:42:32 +0000914 .. doctest::
915
916 >>> turtle.fillcolor("violet")
917 >>> turtle.fillcolor()
918 'violet'
919 >>> col = turtle.pencolor()
920 >>> col
921 (50, 193, 143)
922 >>> turtle.fillcolor(col)
923 >>> turtle.fillcolor()
924 (50, 193, 143)
925 >>> turtle.fillcolor('#ffffff')
926 >>> turtle.fillcolor()
927 (255, 255, 255)
Georg Brandla2b34b82008-06-04 11:17:26 +0000928
929
930.. function:: color(*args)
931
932 Return or set pencolor and fillcolor.
933
934 Several input formats are allowed. They use 0 to 3 arguments as
935 follows:
936
937 ``color()``
938 Return the current pencolor and the current fillcolor as a pair of color
R. David Murrayb01c6e52009-04-30 12:42:32 +0000939 specification strings or tuples as returned by :func:`pencolor` and
Georg Brandla2b34b82008-06-04 11:17:26 +0000940 :func:`fillcolor`.
941
942 ``color(colorstring)``, ``color((r,g,b))``, ``color(r,g,b)``
943 Inputs as in :func:`pencolor`, set both, fillcolor and pencolor, to the
944 given value.
945
946 ``color(colorstring1, colorstring2)``, ``color((r1,g1,b1), (r2,g2,b2))``
947 Equivalent to ``pencolor(colorstring1)`` and ``fillcolor(colorstring2)``
948 and analogously if the other input format is used.
949
950 If turtleshape is a polygon, outline and interior of that polygon is drawn
951 with the newly set colors.
952
R. David Murrayb01c6e52009-04-30 12:42:32 +0000953 .. doctest::
954
955 >>> turtle.color("red", "green")
956 >>> turtle.color()
957 ('red', 'green')
958 >>> color("#285078", "#a0c8f0")
959 >>> color()
960 ((40, 80, 120), (160, 200, 240))
Georg Brandla2b34b82008-06-04 11:17:26 +0000961
962
963See also: Screen method :func:`colormode`.
964
965
966Filling
967~~~~~~~
968
R. David Murrayb01c6e52009-04-30 12:42:32 +0000969.. doctest::
970 :hide:
971
972 >>> turtle.home()
973
Georg Brandla2b34b82008-06-04 11:17:26 +0000974.. function:: fill(flag)
975
976 :param flag: True/False (or 1/0 respectively)
977
978 Call ``fill(True)`` before drawing the shape you want to fill, and
979 ``fill(False)`` when done. When used without argument: return fillstate
980 (``True`` if filling, ``False`` else).
981
R. David Murrayb01c6e52009-04-30 12:42:32 +0000982 .. doctest::
983
984 >>> turtle.fill(True)
985 >>> for _ in range(3):
986 ... turtle.forward(100)
987 ... turtle.left(120)
988 ...
989 >>> turtle.fill(False)
Georg Brandla2b34b82008-06-04 11:17:26 +0000990
991
992.. function:: begin_fill()
993
994 Call just before drawing a shape to be filled. Equivalent to ``fill(True)``.
995
Georg Brandla2b34b82008-06-04 11:17:26 +0000996
997.. function:: end_fill()
998
999 Fill the shape drawn after the last call to :func:`begin_fill`. Equivalent
1000 to ``fill(False)``.
1001
R. David Murrayb01c6e52009-04-30 12:42:32 +00001002 .. doctest::
1003
1004 >>> turtle.color("black", "red")
1005 >>> turtle.begin_fill()
1006 >>> turtle.circle(80)
1007 >>> turtle.end_fill()
1008
Georg Brandla2b34b82008-06-04 11:17:26 +00001009
1010More drawing control
1011~~~~~~~~~~~~~~~~~~~~
1012
1013.. function:: reset()
1014
1015 Delete the turtle's drawings from the screen, re-center the turtle and set
1016 variables to the default values.
1017
R. David Murrayb01c6e52009-04-30 12:42:32 +00001018 .. doctest::
1019
1020 >>> turtle.goto(0,-22)
1021 >>> turtle.left(100)
1022 >>> turtle.position()
1023 (0.00,-22.00)
1024 >>> turtle.heading()
1025 100.0
1026 >>> turtle.reset()
1027 >>> turtle.position()
1028 (0.00,0.00)
1029 >>> turtle.heading()
1030 0.0
Georg Brandla2b34b82008-06-04 11:17:26 +00001031
1032
1033.. function:: clear()
1034
1035 Delete the turtle's drawings from the screen. Do not move turtle. State and
1036 position of the turtle as well as drawings of other turtles are not affected.
1037
1038
1039.. function:: write(arg, move=False, align="left", font=("Arial", 8, "normal"))
1040
1041 :param arg: object to be written to the TurtleScreen
1042 :param move: True/False
1043 :param align: one of the strings "left", "center" or right"
1044 :param font: a triple (fontname, fontsize, fonttype)
1045
1046 Write text - the string representation of *arg* - at the current turtle
1047 position according to *align* ("left", "center" or right") and with the given
1048 font. If *move* is True, the pen is moved to the bottom-right corner of the
1049 text. By default, *move* is False.
1050
1051 >>> turtle.write("Home = ", True, align="center")
1052 >>> turtle.write((0,0), True)
1053
1054
1055Turtle state
1056------------
1057
1058Visibility
1059~~~~~~~~~~
1060
Georg Brandla2b34b82008-06-04 11:17:26 +00001061.. function:: hideturtle()
1062 ht()
1063
1064 Make the turtle invisible. It's a good idea to do this while you're in the
1065 middle of doing some complex drawing, because hiding the turtle speeds up the
1066 drawing observably.
1067
R. David Murrayb01c6e52009-04-30 12:42:32 +00001068 .. doctest::
1069
1070 >>> turtle.hideturtle()
1071
1072
1073.. function:: showturtle()
1074 st()
1075
1076 Make the turtle visible.
1077
1078 .. doctest::
1079
1080 >>> turtle.showturtle()
Georg Brandla2b34b82008-06-04 11:17:26 +00001081
1082
1083.. function:: isvisible()
1084
1085 Return True if the Turtle is shown, False if it's hidden.
1086
1087 >>> turtle.hideturtle()
R. David Murrayb01c6e52009-04-30 12:42:32 +00001088 >>> turtle.isvisible()
Georg Brandla2b34b82008-06-04 11:17:26 +00001089 False
R. David Murrayb01c6e52009-04-30 12:42:32 +00001090 >>> turtle.showturtle()
1091 >>> turtle.isvisible()
1092 True
Georg Brandla2b34b82008-06-04 11:17:26 +00001093
1094
1095Appearance
1096~~~~~~~~~~
1097
1098.. function:: shape(name=None)
1099
1100 :param name: a string which is a valid shapename
1101
1102 Set turtle shape to shape with given *name* or, if name is not given, return
1103 name of current shape. Shape with *name* must exist in the TurtleScreen's
1104 shape dictionary. Initially there are the following polygon shapes: "arrow",
1105 "turtle", "circle", "square", "triangle", "classic". To learn about how to
1106 deal with shapes see Screen method :func:`register_shape`.
1107
R. David Murrayb01c6e52009-04-30 12:42:32 +00001108 .. doctest::
1109
1110 >>> turtle.shape()
1111 'classic'
1112 >>> turtle.shape("turtle")
1113 >>> turtle.shape()
1114 'turtle'
Georg Brandla2b34b82008-06-04 11:17:26 +00001115
1116
1117.. function:: resizemode(rmode=None)
1118
1119 :param rmode: one of the strings "auto", "user", "noresize"
1120
1121 Set resizemode to one of the values: "auto", "user", "noresize". If *rmode*
1122 is not given, return current resizemode. Different resizemodes have the
1123 following effects:
1124
1125 - "auto": adapts the appearance of the turtle corresponding to the value of pensize.
1126 - "user": adapts the appearance of the turtle according to the values of
1127 stretchfactor and outlinewidth (outline), which are set by
1128 :func:`shapesize`.
1129 - "noresize": no adaption of the turtle's appearance takes place.
1130
1131 resizemode("user") is called by :func:`shapesize` when used with arguments.
1132
R. David Murrayb01c6e52009-04-30 12:42:32 +00001133 .. doctest::
1134
1135 >>> turtle.resizemode()
1136 'noresize'
1137 >>> turtle.resizemode("auto")
1138 >>> turtle.resizemode()
1139 'auto'
Georg Brandla2b34b82008-06-04 11:17:26 +00001140
1141
1142.. function:: shapesize(stretch_wid=None, stretch_len=None, outline=None)
1143
1144 :param stretch_wid: positive number
1145 :param stretch_len: positive number
1146 :param outline: positive number
1147
1148 Return or set the pen's attributes x/y-stretchfactors and/or outline. Set
1149 resizemode to "user". If and only if resizemode is set to "user", the turtle
1150 will be displayed stretched according to its stretchfactors: *stretch_wid* is
1151 stretchfactor perpendicular to its orientation, *stretch_len* is
1152 stretchfactor in direction of its orientation, *outline* determines the width
1153 of the shapes's outline.
1154
R. David Murrayb01c6e52009-04-30 12:42:32 +00001155 .. doctest::
1156
1157 >>> turtle.shapesize()
1158 (1, 1, 1)
1159 >>> turtle.resizemode("user")
1160 >>> turtle.shapesize(5, 5, 12)
1161 >>> turtle.shapesize()
1162 (5, 5, 12)
1163 >>> turtle.shapesize(outline=8)
1164 >>> turtle.shapesize()
1165 (5, 5, 8)
Georg Brandla2b34b82008-06-04 11:17:26 +00001166
1167
1168.. function:: tilt(angle)
1169
1170 :param angle: a number
1171
1172 Rotate the turtleshape by *angle* from its current tilt-angle, but do *not*
1173 change the turtle's heading (direction of movement).
1174
R. David Murrayb01c6e52009-04-30 12:42:32 +00001175 .. doctest::
1176
1177 >>> turtle.reset()
1178 >>> turtle.shape("circle")
1179 >>> turtle.shapesize(5,2)
1180 >>> turtle.tilt(30)
1181 >>> turtle.fd(50)
1182 >>> turtle.tilt(30)
1183 >>> turtle.fd(50)
Georg Brandla2b34b82008-06-04 11:17:26 +00001184
1185
1186.. function:: settiltangle(angle)
1187
1188 :param angle: a number
1189
1190 Rotate the turtleshape to point in the direction specified by *angle*,
1191 regardless of its current tilt-angle. *Do not* change the turtle's heading
1192 (direction of movement).
1193
R. David Murrayb01c6e52009-04-30 12:42:32 +00001194 .. doctest::
1195
1196 >>> turtle.reset()
1197 >>> turtle.shape("circle")
1198 >>> turtle.shapesize(5,2)
1199 >>> turtle.settiltangle(45)
1200 >>> turtle.fd(50)
1201 >>> turtle.settiltangle(-45)
1202 >>> turtle.fd(50)
Georg Brandla2b34b82008-06-04 11:17:26 +00001203
1204
1205.. function:: tiltangle()
1206
1207 Return the current tilt-angle, i.e. the angle between the orientation of the
1208 turtleshape and the heading of the turtle (its direction of movement).
1209
R. David Murrayb01c6e52009-04-30 12:42:32 +00001210 .. doctest::
1211
1212 >>> turtle.reset()
1213 >>> turtle.shape("circle")
1214 >>> turtle.shapesize(5,2)
1215 >>> turtle.tilt(45)
1216 >>> turtle.tiltangle()
1217 45.0
Georg Brandla2b34b82008-06-04 11:17:26 +00001218
1219
1220Using events
1221------------
1222
1223.. function:: onclick(fun, btn=1, add=None)
1224
1225 :param fun: a function with two arguments which will be called with the
1226 coordinates of the clicked point on the canvas
1227 :param num: number of the mouse-button, defaults to 1 (left mouse button)
1228 :param add: ``True`` or ``False`` -- if ``True``, a new binding will be
1229 added, otherwise it will replace a former binding
1230
1231 Bind *fun* to mouse-click events on this turtle. If *fun* is ``None``,
1232 existing bindings are removed. Example for the anonymous turtle, i.e. the
1233 procedural way:
1234
R. David Murrayb01c6e52009-04-30 12:42:32 +00001235 .. doctest::
1236
1237 >>> def turn(x, y):
1238 ... left(180)
1239 ...
1240 >>> onclick(turn) # Now clicking into the turtle will turn it.
1241 >>> onclick(None) # event-binding will be removed
Georg Brandla2b34b82008-06-04 11:17:26 +00001242
1243
1244.. function:: onrelease(fun, btn=1, add=None)
1245
1246 :param fun: a function with two arguments which will be called with the
1247 coordinates of the clicked point on the canvas
1248 :param num: number of the mouse-button, defaults to 1 (left mouse button)
1249 :param add: ``True`` or ``False`` -- if ``True``, a new binding will be
1250 added, otherwise it will replace a former binding
1251
1252 Bind *fun* to mouse-button-release events on this turtle. If *fun* is
1253 ``None``, existing bindings are removed.
1254
R. David Murrayb01c6e52009-04-30 12:42:32 +00001255 .. doctest::
1256
1257 >>> class MyTurtle(Turtle):
1258 ... def glow(self,x,y):
1259 ... self.fillcolor("red")
1260 ... def unglow(self,x,y):
1261 ... self.fillcolor("")
1262 ...
1263 >>> turtle = MyTurtle()
1264 >>> turtle.onclick(turtle.glow) # clicking on turtle turns fillcolor red,
1265 >>> turtle.onrelease(turtle.unglow) # releasing turns it to transparent.
Georg Brandla2b34b82008-06-04 11:17:26 +00001266
1267
1268.. function:: ondrag(fun, btn=1, add=None)
1269
1270 :param fun: a function with two arguments which will be called with the
1271 coordinates of the clicked point on the canvas
1272 :param num: number of the mouse-button, defaults to 1 (left mouse button)
1273 :param add: ``True`` or ``False`` -- if ``True``, a new binding will be
1274 added, otherwise it will replace a former binding
1275
1276 Bind *fun* to mouse-move events on this turtle. If *fun* is ``None``,
1277 existing bindings are removed.
1278
1279 Remark: Every sequence of mouse-move-events on a turtle is preceded by a
1280 mouse-click event on that turtle.
1281
R. David Murrayb01c6e52009-04-30 12:42:32 +00001282 .. doctest::
1283
1284 >>> turtle.ondrag(turtle.goto)
1285
1286 Subsequently, clicking and dragging the Turtle will move it across
1287 the screen thereby producing handdrawings (if pen is down).
Georg Brandla2b34b82008-06-04 11:17:26 +00001288
1289
1290Special Turtle methods
1291----------------------
1292
1293.. function:: begin_poly()
1294
1295 Start recording the vertices of a polygon. Current turtle position is first
1296 vertex of polygon.
1297
1298
1299.. function:: end_poly()
1300
1301 Stop recording the vertices of a polygon. Current turtle position is last
1302 vertex of polygon. This will be connected with the first vertex.
1303
1304
1305.. function:: get_poly()
1306
1307 Return the last recorded polygon.
1308
R. David Murrayb01c6e52009-04-30 12:42:32 +00001309 .. doctest::
1310
1311 >>> turtle.home()
1312 >>> turtle.begin_poly()
1313 >>> turtle.fd(100)
1314 >>> turtle.left(20)
1315 >>> turtle.fd(30)
1316 >>> turtle.left(60)
1317 >>> turtle.fd(50)
1318 >>> turtle.end_poly()
1319 >>> p = turtle.get_poly()
1320 >>> register_shape("myFavouriteShape", p)
Georg Brandla2b34b82008-06-04 11:17:26 +00001321
1322
1323.. function:: clone()
1324
1325 Create and return a clone of the turtle with same position, heading and
1326 turtle properties.
1327
R. David Murrayb01c6e52009-04-30 12:42:32 +00001328 .. doctest::
1329
1330 >>> mick = Turtle()
1331 >>> joe = mick.clone()
Georg Brandla2b34b82008-06-04 11:17:26 +00001332
1333
1334.. function:: getturtle()
1335
1336 Return the Turtle object itself. Only reasonable use: as a function to
1337 return the "anonymous turtle":
1338
R. David Murrayb01c6e52009-04-30 12:42:32 +00001339 .. doctest::
1340
1341 >>> pet = getturtle()
1342 >>> pet.fd(50)
1343 >>> pet
1344 <turtle.Turtle object at 0x...>
Georg Brandla2b34b82008-06-04 11:17:26 +00001345
1346
1347.. function:: getscreen()
1348
1349 Return the :class:`TurtleScreen` object the turtle is drawing on.
1350 TurtleScreen methods can then be called for that object.
1351
R. David Murrayb01c6e52009-04-30 12:42:32 +00001352 .. doctest::
1353
1354 >>> ts = turtle.getscreen()
1355 >>> ts
1356 <turtle._Screen object at 0x...>
1357 >>> ts.bgcolor("pink")
Georg Brandla2b34b82008-06-04 11:17:26 +00001358
1359
1360.. function:: setundobuffer(size)
1361
1362 :param size: an integer or ``None``
1363
1364 Set or disable undobuffer. If *size* is an integer an empty undobuffer of
1365 given size is installed. *size* gives the maximum number of turtle actions
1366 that can be undone by the :func:`undo` method/function. If *size* is
1367 ``None``, the undobuffer is disabled.
1368
R. David Murrayb01c6e52009-04-30 12:42:32 +00001369 .. doctest::
1370
1371 >>> turtle.setundobuffer(42)
Georg Brandla2b34b82008-06-04 11:17:26 +00001372
1373
1374.. function:: undobufferentries()
1375
1376 Return number of entries in the undobuffer.
1377
R. David Murrayb01c6e52009-04-30 12:42:32 +00001378 .. doctest::
1379
1380 >>> while undobufferentries():
1381 ... undo()
Georg Brandla2b34b82008-06-04 11:17:26 +00001382
1383
1384.. function:: tracer(flag=None, delay=None)
1385
1386 A replica of the corresponding TurtleScreen method.
1387
1388 .. deprecated:: 2.6
1389
1390
1391.. function:: window_width()
1392 window_height()
1393
1394 Both are replicas of the corresponding TurtleScreen methods.
1395
1396 .. deprecated:: 2.6
1397
1398
1399.. _compoundshapes:
1400
1401Excursus about the use of compound shapes
1402-----------------------------------------
1403
1404To use compound turtle shapes, which consist of several polygons of different
1405color, you must use the helper class :class:`Shape` explicitly as described
1406below:
1407
14081. Create an empty Shape object of type "compound".
14092. Add as many components to this object as desired, using the
1410 :meth:`addcomponent` method.
1411
1412 For example:
1413
R. David Murrayb01c6e52009-04-30 12:42:32 +00001414 .. doctest::
1415
1416 >>> s = Shape("compound")
1417 >>> poly1 = ((0,0),(10,-5),(0,10),(-10,-5))
1418 >>> s.addcomponent(poly1, "red", "blue")
1419 >>> poly2 = ((0,0),(10,-5),(-10,-5))
1420 >>> s.addcomponent(poly2, "blue", "red")
Georg Brandla2b34b82008-06-04 11:17:26 +00001421
14223. Now add the Shape to the Screen's shapelist and use it:
1423
R. David Murrayb01c6e52009-04-30 12:42:32 +00001424 .. doctest::
1425
1426 >>> register_shape("myshape", s)
1427 >>> shape("myshape")
Georg Brandla2b34b82008-06-04 11:17:26 +00001428
1429
1430.. note::
1431
1432 The :class:`Shape` class is used internally by the :func:`register_shape`
1433 method in different ways. The application programmer has to deal with the
1434 Shape class *only* when using compound shapes like shown above!
1435
1436
1437Methods of TurtleScreen/Screen and corresponding functions
1438==========================================================
1439
1440Most of the examples in this section refer to a TurtleScreen instance called
1441``screen``.
1442
R. David Murrayb01c6e52009-04-30 12:42:32 +00001443.. doctest::
1444 :hide:
1445
1446 >>> screen = Screen()
Georg Brandla2b34b82008-06-04 11:17:26 +00001447
1448Window control
1449--------------
1450
1451.. function:: bgcolor(*args)
1452
1453 :param args: a color string or three numbers in the range 0..colormode or a
1454 3-tuple of such numbers
1455
1456 Set or return background color of the TurtleScreen.
1457
R. David Murrayb01c6e52009-04-30 12:42:32 +00001458 .. doctest::
1459
1460 >>> screen.bgcolor("orange")
1461 >>> screen.bgcolor()
1462 'orange'
1463 >>> screen.bgcolor("#800080")
1464 >>> screen.bgcolor()
1465 (128, 0, 128)
Georg Brandla2b34b82008-06-04 11:17:26 +00001466
1467
1468.. function:: bgpic(picname=None)
1469
1470 :param picname: a string, name of a gif-file or ``"nopic"``, or ``None``
1471
1472 Set background image or return name of current backgroundimage. If *picname*
1473 is a filename, set the corresponding image as background. If *picname* is
1474 ``"nopic"``, delete background image, if present. If *picname* is ``None``,
R. David Murrayb01c6e52009-04-30 12:42:32 +00001475 return the filename of the current backgroundimage. ::
Georg Brandla2b34b82008-06-04 11:17:26 +00001476
R. David Murrayb01c6e52009-04-30 12:42:32 +00001477 >>> screen.bgpic()
1478 'nopic'
1479 >>> screen.bgpic("landscape.gif")
1480 >>> screen.bgpic()
1481 "landscape.gif"
Georg Brandla2b34b82008-06-04 11:17:26 +00001482
1483
1484.. function:: clear()
1485 clearscreen()
1486
1487 Delete all drawings and all turtles from the TurtleScreen. Reset the now
1488 empty TurtleScreen to its initial state: white background, no background
1489 image, no event bindings and tracing on.
1490
1491 .. note::
1492 This TurtleScreen method is available as a global function only under the
1493 name ``clearscreen``. The global function ``clear`` is another one
1494 derived from the Turtle method ``clear``.
1495
1496
1497.. function:: reset()
1498 resetscreen()
1499
1500 Reset all Turtles on the Screen to their initial state.
1501
1502 .. note::
1503 This TurtleScreen method is available as a global function only under the
1504 name ``resetscreen``. The global function ``reset`` is another one
1505 derived from the Turtle method ``reset``.
1506
1507
1508.. function:: screensize(canvwidth=None, canvheight=None, bg=None)
1509
Georg Brandl95089bc2009-04-23 08:49:39 +00001510 :param canvwidth: positive integer, new width of canvas in pixels
1511 :param canvheight: positive integer, new height of canvas in pixels
1512 :param bg: colorstring or color-tuple, new background color
Georg Brandla2b34b82008-06-04 11:17:26 +00001513
1514 If no arguments are given, return current (canvaswidth, canvasheight). Else
1515 resize the canvas the turtles are drawing on. Do not alter the drawing
1516 window. To observe hidden parts of the canvas, use the scrollbars. With this
1517 method, one can make visible those parts of a drawing which were outside the
1518 canvas before.
1519
R. David Murrayb01c6e52009-04-30 12:42:32 +00001520 >>> screen.screensize()
1521 (400, 300)
1522 >>> screen.screensize(2000,1500)
1523 >>> screen.screensize()
1524 (2000, 1500)
1525
1526 e.g. to search for an erroneously escaped turtle ;-)
Georg Brandla2b34b82008-06-04 11:17:26 +00001527
1528
1529.. function:: setworldcoordinates(llx, lly, urx, ury)
1530
1531 :param llx: a number, x-coordinate of lower left corner of canvas
1532 :param lly: a number, y-coordinate of lower left corner of canvas
1533 :param urx: a number, x-coordinate of upper right corner of canvas
1534 :param ury: a number, y-coordinate of upper right corner of canvas
1535
1536 Set up user-defined coordinate system and switch to mode "world" if
1537 necessary. This performs a ``screen.reset()``. If mode "world" is already
1538 active, all drawings are redrawn according to the new coordinates.
1539
1540 **ATTENTION**: in user-defined coordinate systems angles may appear
1541 distorted.
1542
R. David Murrayb01c6e52009-04-30 12:42:32 +00001543 .. doctest::
1544
1545 >>> screen.reset()
1546 >>> screen.setworldcoordinates(-50,-7.5,50,7.5)
1547 >>> for _ in range(72):
1548 ... left(10)
1549 ...
1550 >>> for _ in range(8):
1551 ... left(45); fd(2) # a regular octagon
1552
1553 .. doctest::
1554 :hide:
1555
1556 >>> screen.reset()
1557 >>> for t in turtles():
1558 ... t.reset()
Georg Brandla2b34b82008-06-04 11:17:26 +00001559
1560
1561Animation control
1562-----------------
1563
1564.. function:: delay(delay=None)
1565
1566 :param delay: positive integer
1567
1568 Set or return the drawing *delay* in milliseconds. (This is approximately
Benjamin Peterson90f36732008-07-12 20:16:19 +00001569 the time interval between two consecutive canvas updates.) The longer the
Georg Brandla2b34b82008-06-04 11:17:26 +00001570 drawing delay, the slower the animation.
1571
1572 Optional argument:
1573
R. David Murrayb01c6e52009-04-30 12:42:32 +00001574 .. doctest::
1575
1576 >>> screen.delay()
1577 10
1578 >>> screen.delay(5)
1579 >>> screen.delay()
1580 5
Georg Brandla2b34b82008-06-04 11:17:26 +00001581
1582
1583.. function:: tracer(n=None, delay=None)
1584
1585 :param n: nonnegative integer
1586 :param delay: nonnegative integer
1587
1588 Turn turtle animation on/off and set delay for update drawings. If *n* is
1589 given, only each n-th regular screen update is really performed. (Can be
1590 used to accelerate the drawing of complex graphics.) Second argument sets
1591 delay value (see :func:`delay`).
1592
R. David Murrayb01c6e52009-04-30 12:42:32 +00001593 .. doctest::
1594
1595 >>> screen.tracer(8, 25)
1596 >>> dist = 2
1597 >>> for i in range(200):
1598 ... fd(dist)
1599 ... rt(90)
1600 ... dist += 2
Georg Brandla2b34b82008-06-04 11:17:26 +00001601
1602
1603.. function:: update()
1604
1605 Perform a TurtleScreen update. To be used when tracer is turned off.
1606
1607See also the RawTurtle/Turtle method :func:`speed`.
1608
1609
1610Using screen events
1611-------------------
1612
1613.. function:: listen(xdummy=None, ydummy=None)
1614
1615 Set focus on TurtleScreen (in order to collect key-events). Dummy arguments
1616 are provided in order to be able to pass :func:`listen` to the onclick method.
1617
1618
1619.. function:: onkey(fun, key)
1620
1621 :param fun: a function with no arguments or ``None``
1622 :param key: a string: key (e.g. "a") or key-symbol (e.g. "space")
1623
1624 Bind *fun* to key-release event of key. If *fun* is ``None``, event bindings
1625 are removed. Remark: in order to be able to register key-events, TurtleScreen
1626 must have the focus. (See method :func:`listen`.)
1627
R. David Murrayb01c6e52009-04-30 12:42:32 +00001628 .. doctest::
1629
1630 >>> def f():
1631 ... fd(50)
1632 ... lt(60)
1633 ...
1634 >>> screen.onkey(f, "Up")
1635 >>> screen.listen()
Georg Brandla2b34b82008-06-04 11:17:26 +00001636
1637
1638.. function:: onclick(fun, btn=1, add=None)
1639 onscreenclick(fun, btn=1, add=None)
1640
1641 :param fun: a function with two arguments which will be called with the
1642 coordinates of the clicked point on the canvas
1643 :param num: number of the mouse-button, defaults to 1 (left mouse button)
1644 :param add: ``True`` or ``False`` -- if ``True``, a new binding will be
1645 added, otherwise it will replace a former binding
1646
1647 Bind *fun* to mouse-click events on this screen. If *fun* is ``None``,
1648 existing bindings are removed.
1649
1650 Example for a TurtleScreen instance named ``screen`` and a Turtle instance
1651 named turtle:
1652
R. David Murrayb01c6e52009-04-30 12:42:32 +00001653 .. doctest::
1654
1655 >>> screen.onclick(turtle.goto) # Subsequently clicking into the TurtleScreen will
1656 >>> # make the turtle move to the clicked point.
1657 >>> screen.onclick(None) # remove event binding again
Georg Brandla2b34b82008-06-04 11:17:26 +00001658
1659 .. note::
1660 This TurtleScreen method is available as a global function only under the
1661 name ``onscreenclick``. The global function ``onclick`` is another one
1662 derived from the Turtle method ``onclick``.
1663
1664
1665.. function:: ontimer(fun, t=0)
1666
1667 :param fun: a function with no arguments
1668 :param t: a number >= 0
1669
1670 Install a timer that calls *fun* after *t* milliseconds.
1671
R. David Murrayb01c6e52009-04-30 12:42:32 +00001672 .. doctest::
1673
1674 >>> running = True
1675 >>> def f():
1676 ... if running:
1677 ... fd(50)
1678 ... lt(60)
1679 ... screen.ontimer(f, 250)
1680 >>> f() ### makes the turtle march around
1681 >>> running = False
Georg Brandla2b34b82008-06-04 11:17:26 +00001682
1683
1684Settings and special methods
1685----------------------------
1686
1687.. function:: mode(mode=None)
1688
1689 :param mode: one of the strings "standard", "logo" or "world"
1690
1691 Set turtle mode ("standard", "logo" or "world") and perform reset. If mode
1692 is not given, current mode is returned.
1693
1694 Mode "standard" is compatible with old :mod:`turtle`. Mode "logo" is
1695 compatible with most Logo turtle graphics. Mode "world" uses user-defined
1696 "world coordinates". **Attention**: in this mode angles appear distorted if
1697 ``x/y`` unit-ratio doesn't equal 1.
1698
1699 ============ ========================= ===================
1700 Mode Initial turtle heading positive angles
1701 ============ ========================= ===================
1702 "standard" to the right (east) counterclockwise
1703 "logo" upward (north) clockwise
1704 ============ ========================= ===================
1705
R. David Murrayb01c6e52009-04-30 12:42:32 +00001706 .. doctest::
1707
1708 >>> mode("logo") # resets turtle heading to north
1709 >>> mode()
1710 'logo'
Georg Brandla2b34b82008-06-04 11:17:26 +00001711
1712
1713.. function:: colormode(cmode=None)
1714
1715 :param cmode: one of the values 1.0 or 255
1716
1717 Return the colormode or set it to 1.0 or 255. Subsequently *r*, *g*, *b*
1718 values of color triples have to be in the range 0..\ *cmode*.
1719
R. David Murrayb01c6e52009-04-30 12:42:32 +00001720 .. doctest::
1721
1722 >>> screen.colormode(1)
1723 >>> turtle.pencolor(240, 160, 80)
1724 Traceback (most recent call last):
1725 ...
1726 TurtleGraphicsError: bad color sequence: (240, 160, 80)
1727 >>> screen.colormode()
1728 1.0
1729 >>> screen.colormode(255)
1730 >>> screen.colormode()
1731 255
1732 >>> turtle.pencolor(240,160,80)
Georg Brandla2b34b82008-06-04 11:17:26 +00001733
1734
1735.. function:: getcanvas()
1736
1737 Return the Canvas of this TurtleScreen. Useful for insiders who know what to
1738 do with a Tkinter Canvas.
1739
R. David Murrayb01c6e52009-04-30 12:42:32 +00001740 .. doctest::
1741
1742 >>> cv = screen.getcanvas()
1743 >>> cv
1744 <turtle.ScrolledCanvas instance at 0x...>
Georg Brandla2b34b82008-06-04 11:17:26 +00001745
1746
1747.. function:: getshapes()
1748
1749 Return a list of names of all currently available turtle shapes.
1750
R. David Murrayb01c6e52009-04-30 12:42:32 +00001751 .. doctest::
1752
1753 >>> screen.getshapes()
1754 ['arrow', 'blank', 'circle', ..., 'turtle']
Georg Brandla2b34b82008-06-04 11:17:26 +00001755
1756
1757.. function:: register_shape(name, shape=None)
1758 addshape(name, shape=None)
1759
1760 There are three different ways to call this function:
1761
1762 (1) *name* is the name of a gif-file and *shape* is ``None``: Install the
R. David Murrayb01c6e52009-04-30 12:42:32 +00001763 corresponding image shape. ::
1764
1765 >>> screen.register_shape("turtle.gif")
Georg Brandla2b34b82008-06-04 11:17:26 +00001766
1767 .. note::
1768 Image shapes *do not* rotate when turning the turtle, so they do not
1769 display the heading of the turtle!
1770
1771 (2) *name* is an arbitrary string and *shape* is a tuple of pairs of
1772 coordinates: Install the corresponding polygon shape.
1773
R. David Murrayb01c6e52009-04-30 12:42:32 +00001774 .. doctest::
1775
1776 >>> screen.register_shape("triangle", ((5,-3), (0,5), (-5,-3)))
1777
Georg Brandla2b34b82008-06-04 11:17:26 +00001778 (3) *name* is an arbitrary string and shape is a (compound) :class:`Shape`
1779 object: Install the corresponding compound shape.
1780
1781 Add a turtle shape to TurtleScreen's shapelist. Only thusly registered
1782 shapes can be used by issuing the command ``shape(shapename)``.
1783
Georg Brandla2b34b82008-06-04 11:17:26 +00001784
1785.. function:: turtles()
1786
1787 Return the list of turtles on the screen.
1788
R. David Murrayb01c6e52009-04-30 12:42:32 +00001789 .. doctest::
1790
1791 >>> for turtle in screen.turtles():
1792 ... turtle.color("red")
Georg Brandla2b34b82008-06-04 11:17:26 +00001793
1794
1795.. function:: window_height()
1796
R. David Murrayb01c6e52009-04-30 12:42:32 +00001797 Return the height of the turtle window. ::
Georg Brandla2b34b82008-06-04 11:17:26 +00001798
R. David Murrayb01c6e52009-04-30 12:42:32 +00001799 >>> screen.window_height()
1800 480
Georg Brandla2b34b82008-06-04 11:17:26 +00001801
1802
1803.. function:: window_width()
1804
R. David Murrayb01c6e52009-04-30 12:42:32 +00001805 Return the width of the turtle window. ::
Georg Brandla2b34b82008-06-04 11:17:26 +00001806
R. David Murrayb01c6e52009-04-30 12:42:32 +00001807 >>> screen.window_width()
1808 640
Georg Brandla2b34b82008-06-04 11:17:26 +00001809
1810
1811.. _screenspecific:
1812
1813Methods specific to Screen, not inherited from TurtleScreen
Martin v. Löwis87184592008-06-04 06:29:55 +00001814-----------------------------------------------------------
Georg Brandl8ec7f652007-08-15 14:28:01 +00001815
Georg Brandla2b34b82008-06-04 11:17:26 +00001816.. function:: bye()
Georg Brandl8ec7f652007-08-15 14:28:01 +00001817
Georg Brandla2b34b82008-06-04 11:17:26 +00001818 Shut the turtlegraphics window.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001819
Georg Brandl8ec7f652007-08-15 14:28:01 +00001820
Georg Brandla2b34b82008-06-04 11:17:26 +00001821.. function:: exitonclick()
Georg Brandl8ec7f652007-08-15 14:28:01 +00001822
Georg Brandla2b34b82008-06-04 11:17:26 +00001823 Bind bye() method to mouse clicks on the Screen.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001824
Georg Brandl8ec7f652007-08-15 14:28:01 +00001825
Georg Brandla2b34b82008-06-04 11:17:26 +00001826 If the value "using_IDLE" in the configuration dictionary is ``False``
1827 (default value), also enter mainloop. Remark: If IDLE with the ``-n`` switch
1828 (no subprocess) is used, this value should be set to ``True`` in
1829 :file:`turtle.cfg`. In this case IDLE's own mainloop is active also for the
1830 client script.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001831
Georg Brandl8ec7f652007-08-15 14:28:01 +00001832
Georg Brandla2b34b82008-06-04 11:17:26 +00001833.. function:: setup(width=_CFG["width"], height=_CFG["height"], startx=_CFG["leftright"], starty=_CFG["topbottom"])
Georg Brandl8ec7f652007-08-15 14:28:01 +00001834
Georg Brandla2b34b82008-06-04 11:17:26 +00001835 Set the size and position of the main window. Default values of arguments
1836 are stored in the configuration dicionary and can be changed via a
1837 :file:`turtle.cfg` file.
1838
1839 :param width: if an integer, a size in pixels, if a float, a fraction of the
1840 screen; default is 50% of screen
1841 :param height: if an integer, the height in pixels, if a float, a fraction of
1842 the screen; default is 75% of screen
1843 :param startx: if positive, starting position in pixels from the left
1844 edge of the screen, if negative from the right edge, if None,
1845 center window horizontally
1846 :param startx: if positive, starting position in pixels from the top
1847 edge of the screen, if negative from the bottom edge, if None,
1848 center window vertically
1849
R. David Murrayb01c6e52009-04-30 12:42:32 +00001850 .. doctest::
1851
1852 >>> screen.setup (width=200, height=200, startx=0, starty=0)
1853 >>> # sets window to 200x200 pixels, in upper left of screen
1854 >>> screen.setup(width=.75, height=0.5, startx=None, starty=None)
1855 >>> # sets window to 75% of screen by 50% of screen and centers
Georg Brandl8ec7f652007-08-15 14:28:01 +00001856
Georg Brandl8ec7f652007-08-15 14:28:01 +00001857
Georg Brandla2b34b82008-06-04 11:17:26 +00001858.. function:: title(titlestring)
1859
1860 :param titlestring: a string that is shown in the titlebar of the turtle
1861 graphics window
1862
1863 Set title of turtle window to *titlestring*.
1864
R. David Murrayb01c6e52009-04-30 12:42:32 +00001865 .. doctest::
1866
1867 >>> screen.title("Welcome to the turtle zoo!")
Georg Brandla2b34b82008-06-04 11:17:26 +00001868
1869
1870The public classes of the module :mod:`turtle`
1871==============================================
1872
1873
1874.. class:: RawTurtle(canvas)
1875 RawPen(canvas)
1876
1877 :param canvas: a :class:`Tkinter.Canvas`, a :class:`ScrolledCanvas` or a
1878 :class:`TurtleScreen`
1879
R. David Murrayb01c6e52009-04-30 12:42:32 +00001880 Create a turtle. The turtle has all methods described above as "methods of
1881 Turtle/RawTurtle".
Georg Brandla2b34b82008-06-04 11:17:26 +00001882
1883
1884.. class:: Turtle()
1885
R. David Murrayb01c6e52009-04-30 12:42:32 +00001886 Subclass of RawTurtle, has the same interface but draws on a default
1887 :class:`Screen` object created automatically when needed for the first time.
Georg Brandla2b34b82008-06-04 11:17:26 +00001888
1889
1890.. class:: TurtleScreen(cv)
1891
1892 :param cv: a :class:`Tkinter.Canvas`
1893
1894 Provides screen oriented methods like :func:`setbg` etc. that are described
1895 above.
1896
1897.. class:: Screen()
1898
1899 Subclass of TurtleScreen, with :ref:`four methods added <screenspecific>`.
1900
Georg Brandlc62ef8b2009-01-03 20:55:06 +00001901
Georg Brandla2b34b82008-06-04 11:17:26 +00001902.. class:: ScrolledCavas(master)
1903
1904 :param master: some Tkinter widget to contain the ScrolledCanvas, i.e.
1905 a Tkinter-canvas with scrollbars added
1906
1907 Used by class Screen, which thus automatically provides a ScrolledCanvas as
1908 playground for the turtles.
1909
1910.. class:: Shape(type_, data)
1911
1912 :param type\_: one of the strings "polygon", "image", "compound"
1913
1914 Data structure modeling shapes. The pair ``(type_, data)`` must follow this
1915 specification:
1916
1917
1918 =========== ===========
1919 *type_* *data*
1920 =========== ===========
1921 "polygon" a polygon-tuple, i.e. a tuple of pairs of coordinates
1922 "image" an image (in this form only used internally!)
Georg Brandle83a4ad2009-03-13 19:03:58 +00001923 "compound" ``None`` (a compound shape has to be constructed using the
Georg Brandla2b34b82008-06-04 11:17:26 +00001924 :meth:`addcomponent` method)
1925 =========== ===========
Georg Brandlc62ef8b2009-01-03 20:55:06 +00001926
Georg Brandla2b34b82008-06-04 11:17:26 +00001927 .. method:: addcomponent(poly, fill, outline=None)
1928
1929 :param poly: a polygon, i.e. a tuple of pairs of numbers
1930 :param fill: a color the *poly* will be filled with
1931 :param outline: a color for the poly's outline (if given)
Georg Brandlc62ef8b2009-01-03 20:55:06 +00001932
Georg Brandla2b34b82008-06-04 11:17:26 +00001933 Example:
1934
R. David Murrayb01c6e52009-04-30 12:42:32 +00001935 .. doctest::
1936
1937 >>> poly = ((0,0),(10,-5),(0,10),(-10,-5))
1938 >>> s = Shape("compound")
1939 >>> s.addcomponent(poly, "red", "blue")
1940 >>> # ... add more components and then use register_shape()
Georg Brandla2b34b82008-06-04 11:17:26 +00001941
1942 See :ref:`compoundshapes`.
1943
1944
1945.. class:: Vec2D(x, y)
1946
1947 A two-dimensional vector class, used as a helper class for implementing
1948 turtle graphics. May be useful for turtle graphics programs too. Derived
1949 from tuple, so a vector is a tuple!
1950
1951 Provides (for *a*, *b* vectors, *k* number):
1952
1953 * ``a + b`` vector addition
1954 * ``a - b`` vector subtraction
1955 * ``a * b`` inner product
1956 * ``k * a`` and ``a * k`` multiplication with scalar
1957 * ``abs(a)`` absolute value of a
1958 * ``a.rotate(angle)`` rotation
1959
1960
1961Help and configuration
1962======================
1963
1964How to use help
1965---------------
1966
1967The public methods of the Screen and Turtle classes are documented extensively
1968via docstrings. So these can be used as online-help via the Python help
1969facilities:
1970
1971- When using IDLE, tooltips show the signatures and first lines of the
1972 docstrings of typed in function-/method calls.
1973
1974- Calling :func:`help` on methods or functions displays the docstrings::
1975
1976 >>> help(Screen.bgcolor)
1977 Help on method bgcolor in module turtle:
Georg Brandlc62ef8b2009-01-03 20:55:06 +00001978
Georg Brandla2b34b82008-06-04 11:17:26 +00001979 bgcolor(self, *args) unbound turtle.Screen method
1980 Set or return backgroundcolor of the TurtleScreen.
Georg Brandlc62ef8b2009-01-03 20:55:06 +00001981
Georg Brandla2b34b82008-06-04 11:17:26 +00001982 Arguments (if given): a color string or three numbers
1983 in the range 0..colormode or a 3-tuple of such numbers.
Georg Brandlc62ef8b2009-01-03 20:55:06 +00001984
1985
Georg Brandla2b34b82008-06-04 11:17:26 +00001986 >>> screen.bgcolor("orange")
1987 >>> screen.bgcolor()
1988 "orange"
1989 >>> screen.bgcolor(0.5,0,0.5)
1990 >>> screen.bgcolor()
1991 "#800080"
Georg Brandlc62ef8b2009-01-03 20:55:06 +00001992
Georg Brandla2b34b82008-06-04 11:17:26 +00001993 >>> help(Turtle.penup)
1994 Help on method penup in module turtle:
Georg Brandlc62ef8b2009-01-03 20:55:06 +00001995
Georg Brandla2b34b82008-06-04 11:17:26 +00001996 penup(self) unbound turtle.Turtle method
1997 Pull the pen up -- no drawing when moving.
Georg Brandlc62ef8b2009-01-03 20:55:06 +00001998
Georg Brandla2b34b82008-06-04 11:17:26 +00001999 Aliases: penup | pu | up
Georg Brandlc62ef8b2009-01-03 20:55:06 +00002000
Georg Brandla2b34b82008-06-04 11:17:26 +00002001 No argument
Georg Brandlc62ef8b2009-01-03 20:55:06 +00002002
Georg Brandla2b34b82008-06-04 11:17:26 +00002003 >>> turtle.penup()
Georg Brandl8ec7f652007-08-15 14:28:01 +00002004
Georg Brandla2b34b82008-06-04 11:17:26 +00002005- The docstrings of the functions which are derived from methods have a modified
2006 form::
Georg Brandl8ec7f652007-08-15 14:28:01 +00002007
Georg Brandla2b34b82008-06-04 11:17:26 +00002008 >>> help(bgcolor)
2009 Help on function bgcolor in module turtle:
Georg Brandlc62ef8b2009-01-03 20:55:06 +00002010
Georg Brandla2b34b82008-06-04 11:17:26 +00002011 bgcolor(*args)
2012 Set or return backgroundcolor of the TurtleScreen.
Georg Brandlc62ef8b2009-01-03 20:55:06 +00002013
Georg Brandla2b34b82008-06-04 11:17:26 +00002014 Arguments (if given): a color string or three numbers
2015 in the range 0..colormode or a 3-tuple of such numbers.
Georg Brandlc62ef8b2009-01-03 20:55:06 +00002016
Georg Brandla2b34b82008-06-04 11:17:26 +00002017 Example::
Georg Brandlc62ef8b2009-01-03 20:55:06 +00002018
Georg Brandla2b34b82008-06-04 11:17:26 +00002019 >>> bgcolor("orange")
2020 >>> bgcolor()
2021 "orange"
2022 >>> bgcolor(0.5,0,0.5)
2023 >>> bgcolor()
2024 "#800080"
Georg Brandlc62ef8b2009-01-03 20:55:06 +00002025
Georg Brandla2b34b82008-06-04 11:17:26 +00002026 >>> help(penup)
2027 Help on function penup in module turtle:
Georg Brandlc62ef8b2009-01-03 20:55:06 +00002028
Georg Brandla2b34b82008-06-04 11:17:26 +00002029 penup()
2030 Pull the pen up -- no drawing when moving.
Georg Brandlc62ef8b2009-01-03 20:55:06 +00002031
Georg Brandla2b34b82008-06-04 11:17:26 +00002032 Aliases: penup | pu | up
Georg Brandlc62ef8b2009-01-03 20:55:06 +00002033
Georg Brandla2b34b82008-06-04 11:17:26 +00002034 No argument
Georg Brandlc62ef8b2009-01-03 20:55:06 +00002035
Georg Brandla2b34b82008-06-04 11:17:26 +00002036 Example:
2037 >>> penup()
Georg Brandl8ec7f652007-08-15 14:28:01 +00002038
Georg Brandla2b34b82008-06-04 11:17:26 +00002039These modified docstrings are created automatically together with the function
2040definitions that are derived from the methods at import time.
Georg Brandl8ec7f652007-08-15 14:28:01 +00002041
2042
Georg Brandla2b34b82008-06-04 11:17:26 +00002043Translation of docstrings into different languages
Martin v. Löwis87184592008-06-04 06:29:55 +00002044--------------------------------------------------
Georg Brandl8ec7f652007-08-15 14:28:01 +00002045
Georg Brandla2b34b82008-06-04 11:17:26 +00002046There is a utility to create a dictionary the keys of which are the method names
2047and the values of which are the docstrings of the public methods of the classes
2048Screen and Turtle.
Georg Brandl8ec7f652007-08-15 14:28:01 +00002049
Georg Brandla2b34b82008-06-04 11:17:26 +00002050.. function:: write_docstringdict(filename="turtle_docstringdict")
Georg Brandl8ec7f652007-08-15 14:28:01 +00002051
Georg Brandla2b34b82008-06-04 11:17:26 +00002052 :param filename: a string, used as filename
Georg Brandl8ec7f652007-08-15 14:28:01 +00002053
Georg Brandla2b34b82008-06-04 11:17:26 +00002054 Create and write docstring-dictionary to a Python script with the given
2055 filename. This function has to be called explicitly (it is not used by the
2056 turtle graphics classes). The docstring dictionary will be written to the
2057 Python script :file:`{filename}.py`. It is intended to serve as a template
2058 for translation of the docstrings into different languages.
Georg Brandl8ec7f652007-08-15 14:28:01 +00002059
Georg Brandla2b34b82008-06-04 11:17:26 +00002060If you (or your students) want to use :mod:`turtle` with online help in your
2061native language, you have to translate the docstrings and save the resulting
2062file as e.g. :file:`turtle_docstringdict_german.py`.
Georg Brandl8ec7f652007-08-15 14:28:01 +00002063
Georg Brandla2b34b82008-06-04 11:17:26 +00002064If you have an appropriate entry in your :file:`turtle.cfg` file this dictionary
2065will be read in at import time and will replace the original English docstrings.
Georg Brandl8ec7f652007-08-15 14:28:01 +00002066
Georg Brandla2b34b82008-06-04 11:17:26 +00002067At the time of this writing there are docstring dictionaries in German and in
2068Italian. (Requests please to glingl@aon.at.)
2069
2070
2071
2072How to configure Screen and Turtles
Martin v. Löwis87184592008-06-04 06:29:55 +00002073-----------------------------------
Georg Brandl8ec7f652007-08-15 14:28:01 +00002074
Georg Brandla2b34b82008-06-04 11:17:26 +00002075The built-in default configuration mimics the appearance and behaviour of the
2076old turtle module in order to retain best possible compatibility with it.
Georg Brandl8ec7f652007-08-15 14:28:01 +00002077
Georg Brandla2b34b82008-06-04 11:17:26 +00002078If you want to use a different configuration which better reflects the features
2079of this module or which better fits to your needs, e.g. for use in a classroom,
2080you can prepare a configuration file ``turtle.cfg`` which will be read at import
2081time and modify the configuration according to its settings.
Georg Brandl8ec7f652007-08-15 14:28:01 +00002082
Georg Brandla2b34b82008-06-04 11:17:26 +00002083The built in configuration would correspond to the following turtle.cfg::
Georg Brandl8ec7f652007-08-15 14:28:01 +00002084
Georg Brandla2b34b82008-06-04 11:17:26 +00002085 width = 0.5
2086 height = 0.75
2087 leftright = None
2088 topbottom = None
2089 canvwidth = 400
2090 canvheight = 300
2091 mode = standard
2092 colormode = 1.0
2093 delay = 10
2094 undobuffersize = 1000
2095 shape = classic
2096 pencolor = black
2097 fillcolor = black
2098 resizemode = noresize
2099 visible = True
2100 language = english
2101 exampleturtle = turtle
2102 examplescreen = screen
2103 title = Python Turtle Graphics
2104 using_IDLE = False
Georg Brandl8ec7f652007-08-15 14:28:01 +00002105
Martin v. Löwis87184592008-06-04 06:29:55 +00002106Short explanation of selected entries:
Georg Brandl8ec7f652007-08-15 14:28:01 +00002107
Georg Brandla2b34b82008-06-04 11:17:26 +00002108- The first four lines correspond to the arguments of the :meth:`Screen.setup`
2109 method.
2110- Line 5 and 6 correspond to the arguments of the method
2111 :meth:`Screen.screensize`.
2112- *shape* can be any of the built-in shapes, e.g: arrow, turtle, etc. For more
2113 info try ``help(shape)``.
2114- If you want to use no fillcolor (i.e. make the turtle transparent), you have
2115 to write ``fillcolor = ""`` (but all nonempty strings must not have quotes in
2116 the cfg-file).
2117- If you want to reflect the turtle its state, you have to use ``resizemode =
2118 auto``.
2119- If you set e.g. ``language = italian`` the docstringdict
2120 :file:`turtle_docstringdict_italian.py` will be loaded at import time (if
2121 present on the import path, e.g. in the same directory as :mod:`turtle`.
2122- The entries *exampleturtle* and *examplescreen* define the names of these
2123 objects as they occur in the docstrings. The transformation of
2124 method-docstrings to function-docstrings will delete these names from the
2125 docstrings.
2126- *using_IDLE*: Set this to ``True`` if you regularly work with IDLE and its -n
2127 switch ("no subprocess"). This will prevent :func:`exitonclick` to enter the
2128 mainloop.
Georg Brandl8ec7f652007-08-15 14:28:01 +00002129
Georg Brandla2b34b82008-06-04 11:17:26 +00002130There can be a :file:`turtle.cfg` file in the directory where :mod:`turtle` is
2131stored and an additional one in the current working directory. The latter will
2132override the settings of the first one.
Georg Brandl8ec7f652007-08-15 14:28:01 +00002133
Georg Brandla2b34b82008-06-04 11:17:26 +00002134The :file:`Demo/turtle` directory contains a :file:`turtle.cfg` file. You can
2135study it as an example and see its effects when running the demos (preferably
2136not from within the demo-viewer).
Georg Brandl8ec7f652007-08-15 14:28:01 +00002137
Georg Brandla2b34b82008-06-04 11:17:26 +00002138
2139Demo scripts
2140============
2141
2142There is a set of demo scripts in the turtledemo directory located in the
2143:file:`Demo/turtle` directory in the source distribution.
2144
Martin v. Löwis87184592008-06-04 06:29:55 +00002145It contains:
Georg Brandl8ec7f652007-08-15 14:28:01 +00002146
Georg Brandle83a4ad2009-03-13 19:03:58 +00002147- a set of 15 demo scripts demonstrating different features of the new module
Georg Brandla2b34b82008-06-04 11:17:26 +00002148 :mod:`turtle`
2149- a demo viewer :file:`turtleDemo.py` which can be used to view the sourcecode
2150 of the scripts and run them at the same time. 14 of the examples can be
2151 accessed via the Examples menu; all of them can also be run standalone.
2152- The example :file:`turtledemo_two_canvases.py` demonstrates the simultaneous
2153 use of two canvases with the turtle module. Therefore it only can be run
2154 standalone.
2155- There is a :file:`turtle.cfg` file in this directory, which also serves as an
2156 example for how to write and use such files.
2157
Martin v. Löwis87184592008-06-04 06:29:55 +00002158The demoscripts are:
Georg Brandl8ec7f652007-08-15 14:28:01 +00002159
Martin v. Löwis87184592008-06-04 06:29:55 +00002160+----------------+------------------------------+-----------------------+
Georg Brandla2b34b82008-06-04 11:17:26 +00002161| Name | Description | Features |
Martin v. Löwis87184592008-06-04 06:29:55 +00002162+----------------+------------------------------+-----------------------+
Georg Brandla2b34b82008-06-04 11:17:26 +00002163| bytedesign | complex classical | :func:`tracer`, delay,|
2164| | turtlegraphics pattern | :func:`update` |
Martin v. Löwis87184592008-06-04 06:29:55 +00002165+----------------+------------------------------+-----------------------+
Georg Brandla2b34b82008-06-04 11:17:26 +00002166| chaos | graphs verhust dynamics, | world coordinates |
2167| | proves that you must not | |
2168| | trust computers' computations| |
Martin v. Löwis87184592008-06-04 06:29:55 +00002169+----------------+------------------------------+-----------------------+
Georg Brandla2b34b82008-06-04 11:17:26 +00002170| clock | analog clock showing time | turtles as clock's |
2171| | of your computer | hands, ontimer |
Martin v. Löwis87184592008-06-04 06:29:55 +00002172+----------------+------------------------------+-----------------------+
Georg Brandla2b34b82008-06-04 11:17:26 +00002173| colormixer | experiment with r, g, b | :func:`ondrag` |
Martin v. Löwis87184592008-06-04 06:29:55 +00002174+----------------+------------------------------+-----------------------+
Georg Brandla2b34b82008-06-04 11:17:26 +00002175| fractalcurves | Hilbert & Koch curves | recursion |
Martin v. Löwis87184592008-06-04 06:29:55 +00002176+----------------+------------------------------+-----------------------+
Georg Brandla2b34b82008-06-04 11:17:26 +00002177| lindenmayer | ethnomathematics | L-System |
2178| | (indian kolams) | |
Martin v. Löwis87184592008-06-04 06:29:55 +00002179+----------------+------------------------------+-----------------------+
Georg Brandla2b34b82008-06-04 11:17:26 +00002180| minimal_hanoi | Towers of Hanoi | Rectangular Turtles |
2181| | | as Hanoi discs |
2182| | | (shape, shapesize) |
Martin v. Löwis87184592008-06-04 06:29:55 +00002183+----------------+------------------------------+-----------------------+
Georg Brandla2b34b82008-06-04 11:17:26 +00002184| paint | super minimalistic | :func:`onclick` |
2185| | drawing program | |
Martin v. Löwis87184592008-06-04 06:29:55 +00002186+----------------+------------------------------+-----------------------+
Georg Brandla2b34b82008-06-04 11:17:26 +00002187| peace | elementary | turtle: appearance |
2188| | | and animation |
Martin v. Löwis87184592008-06-04 06:29:55 +00002189+----------------+------------------------------+-----------------------+
Georg Brandla2b34b82008-06-04 11:17:26 +00002190| penrose | aperiodic tiling with | :func:`stamp` |
2191| | kites and darts | |
Martin v. Löwis87184592008-06-04 06:29:55 +00002192+----------------+------------------------------+-----------------------+
Georg Brandla2b34b82008-06-04 11:17:26 +00002193| planet_and_moon| simulation of | compound shapes, |
2194| | gravitational system | :class:`Vec2D` |
Martin v. Löwis87184592008-06-04 06:29:55 +00002195+----------------+------------------------------+-----------------------+
Georg Brandla2b34b82008-06-04 11:17:26 +00002196| tree | a (graphical) breadth | :func:`clone` |
Martin v. Löwis87184592008-06-04 06:29:55 +00002197| | first tree (using generators)| |
2198+----------------+------------------------------+-----------------------+
Georg Brandla2b34b82008-06-04 11:17:26 +00002199| wikipedia | a pattern from the wikipedia | :func:`clone`, |
2200| | article on turtle graphics | :func:`undo` |
Martin v. Löwis87184592008-06-04 06:29:55 +00002201+----------------+------------------------------+-----------------------+
Georg Brandla2b34b82008-06-04 11:17:26 +00002202| yingyang | another elementary example | :func:`circle` |
Martin v. Löwis87184592008-06-04 06:29:55 +00002203+----------------+------------------------------+-----------------------+
Georg Brandl8ec7f652007-08-15 14:28:01 +00002204
Georg Brandla2b34b82008-06-04 11:17:26 +00002205Have fun!
R. David Murrayb01c6e52009-04-30 12:42:32 +00002206
2207.. doctest::
2208 :hide:
2209
2210 >>> for turtle in turtles():
2211 ... turtle.reset()
2212 >>> turtle.penup()
2213 >>> turtle.goto(-200,25)
2214 >>> turtle.pendown()
2215 >>> turtle.write("No one expects the Spanish Inquisition!",
2216 ... font=("Arial", 20, "normal"))
2217 >>> turtle.penup()
2218 >>> turtle.goto(-100,-50)
2219 >>> turtle.pendown()
2220 >>> turtle.write("Our two chief Turtles are...",
2221 ... font=("Arial", 16, "normal"))
2222 >>> turtle.penup()
2223 >>> turtle.goto(-450,-75)
2224 >>> turtle.write(str(turtles()))