Turtle - Turtle Graphics - Python 3.10.2 Documentation
Turtle - Turtle Graphics - Python 3.10.2 Documentation
2 Go
Introduction
Turtle graphics is a popular way for introducing programming to kids. It was part of the original Logo programming language developed by Wally
Feurzeig, Seymour Papert and Cynthia Solomon in 1967.
Imagine a robotic turtle starting at (0, 0) in the x-y plane. After an import turtle , give it the command turtle.forward(15) , and it moves (on-screen!)
15 pixels in the direction it is facing, drawing a line as it moves. Give it the command turtle.right(25) , and it rotates in-place 25 degrees clockwise.
By combining together these and similar commands, intricate shapes and pictures can
easily be drawn. Turtle star
The turtle module is an extended reimplementation of the same-named module from Turtle can draw intricate shapes using programs that repeat
the Python standard distribution up to version Python 2.5. simple moves.
It tries to keep the merits of the old turtle module and to be (nearly) 100% compatible
with it. This means in the first place to enable the learning programmer to use all the
commands, classes and methods interactively when using the module from within
IDLE run with the -n switch.
The turtle module provides turtle graphics primitives, in both object-oriented and
procedure-oriented ways. Because it uses tkinter for the underlying graphics, it
needs a version of Python installed with Tk support.
Derived from RawTurtle is the subclass Turtle (alias: Pen ), which draws on “the” Screen instance which is automatically created, if not already
present.
All methods of RawTurtle/Turtle also exist as functions, i.e. part of the procedure-oriented interface.
The procedural interface provides functions which are derived from the methods of the classes Screen and Turtle . They have the same names as the
corresponding methods. A screen object is automatically created whenever a function derived from a Screen method is called. An (unnamed) turtle
object is automatically created whenever any of the functions derived from a Turtle method is called.
To use multiple turtles on a screen one has to use the object-oriented interface.
Note: In the following documentation the argument list for functions is given. Methods, of course, have the additional first argument self which is
omitted here.
Turtle motion
Move and draw
forward() | fd()
backward() | bk() | back()
right() | rt()
left() | lt()
goto() | setpos() | setposition()
setx()
sety()
setheading() | seth()
home()
circle()
dot()
3.10.2 Go
stamp()
clearstamp()
clearstamps()
undo()
speed()
Pen control
Drawing state
pendown() | pd() | down()
penup() | pu() | up()
pensize() | width()
pen()
isdown()
Color control
color()
pencolor()
fillcolor()
Filling
filling()
begin_fill()
end_fill()
M d i t l
More drawing control
3.10.2
reset() Go
clear()
write()
Turtle state
Visibility
showturtle() | st()
hideturtle() | ht()
isvisible()
Appearance
shape()
resizemode()
shapesize() | turtlesize()
shearfactor()
settiltangle()
tiltangle()
tilt()
shapetransform()
get_shapepoly()
Using events
onclick()
onrelease()
ondrag()
Methods of TurtleScreen/Screen
3.10.2
Window control Go
bgcolor()
bgpic()
clearscreen()
resetscreen()
screensize()
setworldcoordinates()
Animation control
delay()
tracer()
update()
Input methods
textinput()
numinput()
title()
Turtle motion
turtle. forward(distance)
turtle. fd(distance)
Parameters: distance – a number (integer or float)
Move the turtle forward by the specified distance, in the direction the turtle is headed.
turtle. back(distance)
turtle. bk(distance)
turtle. backward(distance)
Parameters: distance – a number
Move the turtle backward by distance, opposite to the direction the turtle is headed. Do not change the turtle’s heading.
turtle. right(angle)
t( )
turtle. rt(angle)
3.10.2 Go
Parameters: angle – a number (integer or float)
Turn turtle right by angle units. (Units are by default degrees, but can be set via the degrees() and radians() functions.) Angle orientation
depends on the turtle mode, see mode() .
turtle. left(angle)
turtle. lt(angle)
Parameters: angle – a number (integer or float)
Turn turtle left by angle units. (Units are by default degrees, but can be set via the degrees() and radians() functions.) Angle orientation depends
on the turtle mode, see mode() .
Move turtle to an absolute position. If the pen is down, draw line. Do not change the turtle’s orientation.
>>> tp = turtle.pos()
>>> tp
(0.00,0.00)
>>> turtle.setpos(60,30)
>>> turtle.pos()
(60.00,30.00)
>>> turtle.setpos((20,80))
>>> 3.10.2
turtle.pos() Go
(20.00,80.00)
>>> turtle.setpos(tp)
>>> turtle.pos()
(0.00,0.00)
turtle. setx(x)
Parameters: x – a number (integer or float)
turtle. sety(y)
Parameters: y – a number (integer or float)
turtle. setheading(to_angle)
turtle. seth(to_angle)
Parameters: to_angle – a number (integer or float)
Set the orientation of the turtle to to_angle. Here are some common directions in degrees:
0 - east 0 - north
90 - north 90 - east
3.10.2 standard
180 - westmode logo
180 - mode
south Go
turtle. home()
Move turtle to the origin – coordinates (0,0) – and set its heading to its start-orientation (which depends on the mode, see mode() ).
Draw a circle with given radius. The center is radius units left of the turtle; extent – an angle – determines which part of the circle is drawn. If extent
is not given, draw the entire circle. If extent is not a full circle, one endpoint of the arc is the current pen position. Draw the arc in counterclockwise
direction if radius is positive, otherwise in clockwise direction. Finally the direction of the turtle is changed by the amount of extent.
As the circle is approximated by an inscribed regular polygon, steps determines the number of steps to use. If not given, it will be calculated
automatically. May be used to draw regular polygons.
>>> turtle.position()
(-0.00,0.00)
>>> turtle.heading()
0.0
>>> turtle.circle(120, 180) # draw a semicircle
>>> turtle.position()
(0.00,240.00)
>>> turtle.heading()
180.0
Draw a circular dot with diameter size, using color. If size is not given, the maximum of pensize+4 and 2*pensize is used.
turtle. stamp()
Stamp a copy of the turtle shape onto the canvas at the current turtle position. Return a stamp_id for that stamp, which can be used to delete it by
calling clearstamp(stamp_id) .
turtle. clearstamp(stampid)
Parameters: stampid – an integer, must be return value of previous stamp() call
l i i () >>>
>>> turtle.position() >>>
3.10.2
(150.00,-0.00) Go
>>> turtle.color("blue")
>>> astamp = turtle.stamp()
>>> turtle.fd(50)
>>> turtle.position()
(200.00,-0.00)
>>> turtle.clearstamp(astamp)
>>> turtle.position()
(200.00,-0.00)
turtle. clearstamps(n=None)
Parameters: n – an integer (or None )
Delete all or first/last n of turtle’s stamps. If n is None , delete all stamps, if n > 0 delete first n stamps, else if n < 0 delete last n stamps.
turtle. undo()
Undo (repeatedly) the last turtle action(s). Number of available undo actions is determined by the size of the undobuffer.
turtle. speed(speed=None)
Parameters: speed – an integer in the range 0..10 or a speedstring (see below)
p g g p g( )
3.10.2 Go
Set the turtle’s speed to an integer value in the range 0..10. If no argument is given, return current speed.
If input is a number greater than 10 or smaller than 0.5, speed is set to 0. Speedstrings are mapped to speedvalues as follows:
“fastest”: 0
“fast”: 10
“normal”: 6
“slow”: 3
“slowest”: 1
Speeds from 1 to 10 enforce increasingly faster animation of line drawing and turtle turning.
Attention: speed = 0 means that no animation takes place. forward/back makes turtle jump and likewise left/right make the turtle turn instantly.
turtle. position()
turtle. pos()
Return the turtle’s current location (x,y) (as a Vec2D vector).
Return the angle between the line from turtle position to position specified by (x,y), the vector or the other turtle. This depends on the turtle’s start
orientation which depends on the mode - “standard”/”world” or “logo”.
225.0
turtle. xcor()
Return the turtle’s x coordinate.
turtle. ycor()
Return the turtle’s y coordinate.
turtle. heading()
Return the turtle’s current heading (value depends on the turtle mode, see mode() ).
Return the distance from the turtle to (x,y), the given vector, or the given other turtle, in turtle step units.
3.10.2 Go
turtle. degrees(fullcircle=360.0)
Parameters: fullcircle – a number
Set angle measurement units, i.e. set number of “degrees” for a full circle. Default value is 360 degrees.
turtle. radians()
Set the angle measurement units to radians. Equivalent to degrees(2*math.pi) .
Pen control
Drawing state
turtle. pendown()
turtle. pd()
turtle. down()
Pull the pen down – drawing when moving.
turtle. penup()
turtle. pu()
turtle. up()
Pull the pen up – no drawing when moving.
turtle. pensize(width=None)
turtle. width(width=None)
Parameters: width – a positive number
Set the line thickness to width or return it. If resizemode is set to “auto” and turtleshape is a polygon, that polygon is drawn with the same line
thickness. If no argument is given, the current pensize is returned.
Return or set the pen’s attributes in a “pen-dictionary” with the following key/value pairs:
“shown”: True/False
“pendown”: True/False
“pencolor”: color-string or color-tuple
“fillcolor”: color-string or color-tuple
“pensize”: positive number
“speed”: number in range 0..10
3.10.2 Go
This dictionary can be used as argument for a subsequent call to pen() to restore the former pen-state. Moreover one or more of these attributes
can be provided as keyword-arguments. This can be used to set several pen attributes in one statement.
turtle. isdown()
Return True if pen is down, False if it’s up.
Color control
turtle. pencolor(*args)
Return or set the pencolor.
pencolor()
Return the current pencolor as color specification string or as a tuple (see example). May be used as input to another color/pencolor/fillcolor
call.
pencolor(colorstring)
Set pencolor to colorstring, which is a Tk color specification string, such as "red" , "yellow" , or "#33cc8c" .
pencolor((r, g, b))
Set pencolor to the RGB color represented by the tuple of r, g, and b. Each of r, g, and b must be in the range 0..colormode, where colormode
is either 1.0 or 255 (see colormode() ).
pencolor(r, g, b)
Set pencolor to the RGB color represented by r, g, and b. Each of r, g, and b must be in the range 0..colormode.
If turtleshape is a polygon, the outline of that polygon is drawn with the newly set pencolor.
>>> colormode()
1.0
>>> turtle.pencolor()
'red'
>>> turtle.pencolor("brown")
>>> turtle.pencolor()
'brown'
>>> tup = (0.2, 0.8, 0.55)
>>> turtle.pencolor(tup)
>>> turtle.pencolor()
(0.2, 0.8, 0.5490196078431373)
>>> colormode(255)
>>> turtle.pencolor()
(51.0, 204.0, 140.0)
>>> turtle.pencolor('#32c18f')
>>> turtle.pencolor()
(50.0, 193.0, 143.0)
turtle. fillcolor(*args)
Return or set the fillcolor.
Return the current fillcolor as color specification string, possibly in tuple format (see example). May be used as input to another
color/pencolor/fillcolor call.
fillcolor(colorstring)
Set fillcolor to colorstring, which is a Tk color specification string, such as "red" , "yellow" , or "#33cc8c" .
fillcolor((r, g, b))
Set fillcolor to the RGB color represented by the tuple of r, g, and b. Each of r, g, and b must be in the range 0..colormode, where colormode is
either 1.0 or 255 (see colormode() ).
fillcolor(r, g, b)
Set fillcolor to the RGB color represented by r, g, and b. Each of r, g, and b must be in the range 0..colormode.
If turtleshape is a polygon, the interior of that polygon is drawn with the newly set fillcolor.
>>> turtle.fillcolor("violet")
>>> turtle.fillcolor()
'violet'
>>> turtle.pencolor()
(50.0, 193.0, 143.0)
>>> turtle.fillcolor((50, 193, 143)) # Integers, not floats
>>> turtle.fillcolor()
(50.0, 193.0, 143.0)
>>> turtle.fillcolor('#ffffff')
>>> turtle.fillcolor()
(255.0, 255.0, 255.0)
turtle. color(*args)
Return or set pencolor and fillcolor.
color()
Return the current pencolor and the current fillcolor as a pair of color specification strings or tuples as returned by pencolor() and
fillcolor() .
Equivalent to pencolor(colorstring1) and fillcolor(colorstring2) and analogously if the other input format is used.
If turtleshape is a polygon, outline and interior of that polygon is drawn with the newly set colors.
Filling
turtle. filling()
Return fillstate ( True if filling, False else).
>>> turtle.begin_fill()
>>> if turtle.filling():
... turtle.pensize(5)
... else:
... turtle.pensize(3)
turtle. begin_fill()
To be called just before drawing a shape to be filled.
turtle. end_fill()
Fill the shape drawn after the last call to begin_fill() .
Whether or not overlap regions for self-intersecting polygons or multiple shapes are filled depends on the operating system graphics, type of
overlap, and number of overlaps. For example, the Turtle star above may be either all yellow or have some white regions.
turtle. reset()
Delete the turtle’s drawings from the screen, re-center the turtle and set variables to the default values.
turtle. clear()
Delete the turtle’s drawings from the screen. Do not move turtle. State and position of the turtle as well as drawings of other turtles are not affected.
Write text - the string representation of arg - at the current turtle position according to align (“left”, “center” or “right”) and with the given font. If move
is true, the pen is moved to the bottom-right corner of the text. By default, move is False .
Turtle state
Visibility
turtle. hideturtle()
turtle. ht()
Make the turtle invisible. It’s a good idea to do this while you’re in the middle of doing some complex drawing, because hiding the turtle speeds up
the drawing observably
the drawing observably.
3.10.2 Go
turtle. showturtle()
turtle. st()
Make the turtle visible.
turtle. isvisible()
Return True if the Turtle is shown, False if it’s hidden.
Appearance
turtle. shape(name=None)
Parameters: name – a string which is a valid shapename
Set turtle shape to shape with given name or, if name is not given, return name of current shape. Shape with name must exist in the TurtleScreen’s
shape dictionary. Initially there are the following polygon shapes: “arrow”, “turtle”, “circle”, “square”, “triangle”, “classic”. To learn about how to deal
with shapes see Screen method register_shape() .
turtle. resizemode(rmode=None)
Parameters: rmode – one of the strings “auto”, “user”, “noresize”
Set resizemode to one of the values: “auto” “user” “noresize” If rmode is not given return current resizemode Different resizemodes have the
Set resizemode to one of the values: auto , user , noresize . If rmode is not given, return current resizemode. Different resizemodes have the
following effects:
3.10.2 Go
“auto”: adapts the appearance of the turtle corresponding to the value of pensize.
“user”: adapts the appearance of the turtle according to the values of stretchfactor and outlinewidth (outline), which are set by shapesize() .
“noresize”: no adaption of the turtle’s appearance takes place.
Return or set the pen’s attributes x/y-stretchfactors and/or outline. Set resizemode to “user”. If and only if resizemode is set to “user”, the turtle will
be displayed stretched according to its stretchfactors: stretch_wid is stretchfactor perpendicular to its orientation, stretch_len is stretchfactor in
direction of its orientation, outline determines the width of the shapes’s outline.
turtle. shearfactor(shear=None)
Parameters: shear – number (optional)
Set or return the current shearfactor. Shear the turtleshape according to the given shearfactor shear, which is the tangent of the shear angle. Do not
change the turtle’s heading (direction of movement). If shear is not given: return the current shearfactor, i. e. the tangent of the shear angle, by
which lines parallel to the heading of the turtle are sheared.
p g
3.10.2 Go
>>> turtle.shape("circle")
>>> turtle.shapesize(5,2)
>>> turtle.shearfactor(0.5)
>>> turtle.shearfactor()
0.5
turtle. tilt(angle)
Parameters: angle – a number
Rotate the turtleshape by angle from its current tilt-angle, but do not change the turtle’s heading (direction of movement).
turtle. settiltangle(angle)
Parameters: angle – a number
Rotate the turtleshape to point in the direction specified by angle, regardless of its current tilt-angle. Do not change the turtle’s heading (direction of
movement).
turtle. tiltangle(angle=None)
Parameters: angle – a number (optional)
If none of the matrix elements are given, return the transformation matrix as a tuple of 4 elements. Otherwise set the given elements and transform
the turtleshape according to the matrix consisting of first row t11, t12 and second row t21, t22. The determinant t11 * t22 - t12 * t21 must not be zero,
otherwise an error is raised. Modify stretchfactor, shearfactor and tiltangle according to the given matrix.
turtle. get_shapepoly()
Return the current shape polygon as tuple of coordinate pairs. This can be used to define a new shape or components of a compound shape.
Using events
turtle. onclick(
3.10.2 fun, btn=1, add=None) Go
Parameters: fun – a function with two arguments which will be called with the coordinates of the clicked point on the canvas
btn – number of the mouse-button, defaults to 1 (left mouse button)
add – True or False – if True , a new binding will be added, otherwise it will replace a former binding
Bind fun to mouse-click events on this turtle. If fun is None , existing bindings are removed. Example for the anonymous turtle, i.e. the procedural
way:
Bind fun to mouse-button-release events on this turtle. If fun is None , existing bindings are removed.
Bind fun to mouse-move events on this turtle. If fun is None , existing bindings are removed.
Remark: Every sequence of mouse-move-events on a turtle is preceded by a mouse-click event on that turtle.
3.10.2
>>> turtle.ondrag(turtle.goto) Go
>>>
Subsequently, clicking and dragging the Turtle will move it across the screen thereby producing handdrawings (if pen is down).
turtle. begin_poly()
Start recording the vertices of a polygon. Current turtle position is first vertex of polygon.
turtle. end_poly()
Stop recording the vertices of a polygon. Current turtle position is last vertex of polygon. This will be connected with the first vertex.
turtle. get_poly()
Return the last recorded polygon.
turtle. clone()
Create and return a clone of the turtle with same position, heading and turtle properties.
turtle. getturtle()
turtle. getpen()
Return the Turtle object itself. Only reasonable use: as a function to return the “anonymous turtle”:
turtle. getscreen()
Return the TurtleScreen object the turtle is drawing on. TurtleScreen methods can then be called for that object.
turtle. setundobuffer(size)
Parameters: size – an integer or None
Set or disable undobuffer. If size is an integer, an empty undobuffer of given size is installed. size gives the maximum number of turtle actions that
can be undone by the undo() method/function. If size is None , the undobuffer is disabled.
turtle. undobufferentries()
Return number of entries in the undobuffer.
Compound shapes
To use compound turtle shapes, which consist of several polygons of different color, you must use the helper class Shape explicitly as described below:
2. Add as many components to this object as desired, using the addcomponent() method.
For example:
Note: The Shape class is used internally by the register_shape() method in different ways. The application programmer has to deal with the
Shape class only when using compound shapes like shown above!
Window control
turtle. bgcolor(*args)
Parameters: args – a color string or three numbers in the range 0..colormode or a 3-tuple of such numbers
turtle. bgpic(picname=None)
Parameters: picname – a string, name of a gif-file or "nopic" , or None
Set background image or return name of current backgroundimage. If picname is a filename, set the corresponding image as background. If
picname is "nopic" , delete background image, if present. If picname is None , return the filename of the current backgroundimage.
t tl clear()
turtle. clear()
3.10.2 Go
Note: This TurtleScreen method is available as a global function only under the name clearscreen . The global function clear is a different
one derived from the Turtle method clear .
turtle. clearscreen()
Delete all drawings and all turtles from the TurtleScreen. Reset the now empty TurtleScreen to its initial state: white background, no background
image, no event bindings and tracing on.
turtle. reset()
Note: This TurtleScreen method is available as a global function only under the name resetscreen . The global function reset is another one
derived from the Turtle method reset .
turtle. resetscreen()
Reset all Turtles on the Screen to their initial state.
If no arguments are given, return current (canvaswidth, canvasheight). Else resize the canvas the turtles are drawing on. Do not alter the drawing
window. To observe hidden parts of the canvas, use the scrollbars. With this method, one can make visible those parts of a drawing which were
outside the canvas before.
Set up user-defined coordinate system and switch to mode “world” if necessary. This performs a screen.reset() . If mode “world” is already active,
all drawings are redrawn according to the new coordinates.
Animation control
turtle. delay(delay=None)
Parameters: delay – positive integer
Set or return the drawing delay in milliseconds. (This is approximately the time interval between two consecutive canvas updates.) The longer the
drawing delay, the slower the animation.
Optional argument:
Turn turtle animation on/off and set delay for update drawings. If n is given, only each n-th regular screen update is really performed. (Can be used
to accelerate the drawing of complex graphics.) When called without arguments, returns the currently stored value of n. Second argument sets delay
value (see delay() ).
turtle. update()
Perform a TurtleScreen update. To be used when tracer is turned off.
Bind fun to key-release event of key. If fun is None , event bindings are removed. Remark: in order to be able to register key-events, TurtleScreen
must have the focus. (See method listen() .)
Bind fun to key-press event of key if key is given, or to any key-press-event if no key is given. Remark: in order to be able to register key-events,
TurtleScreen must have focus. (See method listen() .)
>>> def f(): >>>
... 3.10.2
fd(50) Go
...
>>> screen.onkey(f, "Up")
>>> screen.listen()
Bind fun to mouse-click events on this screen. If fun is None , existing bindings are removed.
Example for a TurtleScreen instance named screen and a Turtle instance named turtle :
Note: This TurtleScreen method is available as a global function only under the name onscreenclick . The global function onclick is another
one derived from the Turtle method onclick .
turtle. mainloop()
()
turtle. done()
3.10.2 Go
Starts event loop - calling Tkinter’s mainloop function. Must be the last statement in a turtle graphics program. Must not be used if a script is run
from within IDLE in -n mode (No subprocess) - for interactive use of turtle graphics.
Input methods
Pop up a dialog window for input of a string. Parameter title is the title of the dialog window, prompt is a text mostly describing what information to
input. Return the string input. If the dialog is canceled, return None .
Pop up a dialog window for input of a number. title is the title of the dialog window, prompt is a text mostly describing what numerical information to
input. default: default value, minval: minimum value for input, maxval: maximum value for input The number input must be in the range minval ..
maxval if these are given. If not, a hint is issued and the dialog remains open for correction. Return the number input. If the dialog is canceled, return
None .
turtle. mode(mode=None)
Parameters: mode – one of the strings “standard”, “logo” or “world”
Set turtle mode (“standard”, “logo” or “world”) and perform reset. If mode is not given, current mode is returned.
( , g ) p g ,
3.10.2 Go
Mode “standard” is compatible with old turtle . Mode “logo” is compatible with most Logo turtle graphics. Mode “world” uses user-defined “world
coordinates”. Attention: in this mode angles appear distorted if x/y unit-ratio doesn’t equal 1.
turtle. colormode(cmode=None)
Parameters: cmode – one of the values 1.0 or 255
Return the colormode or set it to 1.0 or 255. Subsequently r, g, b values of color triples have to be in the range 0..cmode.
turtle. getcanvas()
Return the Canvas of this TurtleScreen. Useful for insiders who know what to do with a Tkinter Canvas.
turtle getshapes()
turtle. getshapes()
Return3.10.2
a list of names of all currently available turtle shapes. Go
1. name is the name of a gif-file and shape is None : Install the corresponding image shape.
Note: Image shapes do not rotate when turning the turtle, so they do not display the heading of the turtle!
2. name is an arbitrary string and shape is a tuple of pairs of coordinates: Install the corresponding polygon shape.
3. name is an arbitrary string and shape is a (compound) Shape object: Install the corresponding compound shape.
Add a turtle shape to TurtleScreen’s shapelist. Only thusly registered shapes can be used by issuing the command shape(shapename) .
turtle. turtles()
Return the list of turtles on the screen.
turtle. window_height()
Return the height of the turtle window.
turtle. window_width()
Return the width of the turtle window.
>>> screen.window_width() >>>
3.10.2 Go
640
turtle. bye()
Shut the turtlegraphics window.
turtle. exitonclick()
Bind bye() method to mouse clicks on the Screen.
If the value “using_IDLE” in the configuration dictionary is False (default value), also enter mainloop. Remark: If IDLE with the -n switch (no
subprocess) is used, this value should be set to True in turtle.cfg . In this case IDLE’s own mainloop is active also for the client script.
Parameters: width – if an integer, a size in pixels, if a float, a fraction of the screen; default is 50% of screen
height – if an integer, the height in pixels, if a float, a fraction of the screen; default is 75% of screen
startx – if positive, starting position in pixels from the left edge of the screen, if negative from the right edge, if None , center
window horizontally
starty – if positive, starting position in pixels from the top edge of the screen, if negative from the bottom edge, if None , center
window vertically
turtle. title(titlestring)
Parameters: titlestring – a string that is shown in the titlebar of the turtle graphics window
Public classes
3.10.2 Go
Create a turtle. The turtle has all methods described above as “methods of Turtle/RawTurtle”.
Provides screen oriented methods like setbg() etc. that are described above.
Used by class Screen, which thus automatically provides a ScrolledCanvas as playground for the turtles.
Data structure modeling shapes. The pair (type_, data) must follow this specification:
type_ data
Example:
a + b vector addition
a - b vector subtraction
a * b inner product
k * a and a * k multiplication with scalar
abs(a) absolute value of a
a.rotate(angle) rotation
The public methods of the Screen and Turtle classes are documented extensively via docstrings. So these can be used as online-help via the Python
help facilities:
When using IDLE, tooltips show the signatures and first lines of the docstrings of typed in function-/method calls.
>>> screen.bgcolor("orange")
>>> screen.bgcolor()
"orange"
>>> screen.bgcolor(0.5,0,0.5)
>>> screen.bgcolor()
"#800080"
>>> help(Turtle.penup)
Help on method penup in module turtle:
Aliases: penup | pu | up
No argument
>>> turtle.penup()
The docstrings of the functions which are derived from methods have a modified form:
bgcolor(*args)
Set or return backgroundcolor of the TurtleScreen.
Example::
>>> bgcolor("orange")
>>> bgcolor()
"orange"
>>> bgcolor(0.5,0,0.5)
>>> bgcolor()
3.10.2
"#800080" Go
>>> help(penup)
Help on function penup in module turtle:
penup()
Pull the pen up -- no drawing when moving.
Aliases: penup | pu | up
No argument
Example:
>>> penup()
These modified docstrings are created automatically together with the function definitions that are derived from the methods at import time.
There is a utility to create a dictionary the keys of which are the method names and the values of which are the docstrings of the public methods of the
classes Screen and Turtle.
turtle. write_docstringdict(filename='turtle_docstringdict')
Parameters: filename – a string, used as filename
Create and write docstring-dictionary to a Python script with the given filename. This function has to be called explicitly (it is not used by the turtle
graphics classes). The docstring dictionary will be written to the Python script filename.py . It is intended to serve as a template for translation of
the docstrings into different languages.
If you (or your students) want to use turtle with online help in your native language, you have to translate the docstrings and save the resulting file as
e.g. turtle_docstringdict_german.py .
If you have an appropriate entry in your turtle.cfg file this dictionary will be read in at import time and will replace the original English docstrings.
At the time of this writing there are docstring dictionaries in German and in Italian. (Requests please to [email protected].)
The built-in default configuration mimics the appearance and behaviour of the old turtle module in order to retain best possible compatibility with it.
If diff fi i hi h b fl h f f hi d l hi h b fi d f i l
If you want to use a different configuration which better reflects the features of this module or which better fits to your needs, e.g. for use in a classroom,
3.10.2 a configuration file turtle.cfg which will be read at import time and modify the configuration according to its settings.
you can prepare Go
width = 0.5
height = 0.75
leftright = None
topbottom = None
canvwidth = 400
canvheight = 300
mode = standard
colormode = 1.0
delay = 10
undobuffersize = 1000
shape = classic
pencolor = black
fillcolor = black
resizemode = noresize
visible = True
language = english
exampleturtle = turtle
examplescreen = screen
title = Python Turtle Graphics
using_IDLE = False
The first four lines correspond to the arguments of the Screen.setup() method.
Line 5 and 6 correspond to the arguments of the method Screen.screensize() .
shape can be any of the built-in shapes, e.g: arrow, turtle, etc. For more info try help(shape) .
If you want to use no fillcolor (i.e. make the turtle transparent), you have to write fillcolor = "" (but all nonempty strings must not have quotes in
the cfg-file).
If you want to reflect the turtle its state, you have to use resizemode = auto .
If you set e.g. language = italian the docstringdict turtle_docstringdict_italian.py will be loaded at import time (if present on the import path,
e.g. in the same directory as turtle .
The entries exampleturtle and examplescreen define the names of these objects as they occur in the docstrings. The transformation of method-
docstrings to function-docstrings will delete these names from the docstrings.
using_IDLE: Set this to True if you regularly work with IDLE and its -n switch (“no subprocess”). This will prevent exitonclick() to enter the
mainloop.
There can be a turtle.cfg file in the directory where turtle is stored and an additional one in the current working directory. The latter will override the
settings of the first one.
3.10.2 Go
The Lib/turtledemo directory contains a turtle.cfg file. You can study it as an example and see its effects when running the demos (preferably not
from within the demo-viewer).
The turtledemo package includes a set of demo scripts. These scripts can be run and viewed using the supplied demo viewer as follows:
python -m turtledemo
Alternatively, you can run the demo scripts individually. For example,
python -m turtledemo.bytedesign
A demo viewer __main__.py which can be used to view the sourcecode of the scripts and run them at the same time.
Multiple scripts demonstrating different features of the turtle module. Examples can be accessed via the Examples menu. They can also be run
standalone.
A turtle.cfg file which serves as an example of how to write and use such files.
clock analog clock showing time of your computer turtles as clock’s hands, ontimer
play the classical nim game with three heaps of sticks against turtles as nimsticks, event driven (mouse,
nim
the computer. keyboard)
wikipedia a pattern from the wikipedia article on turtle graphics clone() , undo()
Have fun!
The methods Turtle.shearfactor() , Turtle.shapetransform() and Turtle.get_shapepoly() have been added. Thus the full range of regular
linear transforms is now available for transforming turtle shapes. Turtle.tiltangle() has been enhanced in functionality: it now can be used to get
or set the tiltangle. Turtle.settiltangle() has been deprecated.
The method Screen.onkeypress() has been added as a complement to Screen.onkey() which in fact binds actions to the keyrelease event.
Accordingly the latter has got an alias: Screen.onkeyrelease() .
The method Screen.mainloop() has been added. So when working only with Screen and Turtle objects one must not additionally import mainloop()
anymore.
Two input methods has been added Screen.textinput() and Screen.numinput() . These popup input dialogs and return strings and numbers
respectively.
Two example scripts tdemo_nim.py and tdemo_round_dance.py have been added to the Lib/turtledemo directory.