Top "Turtle-graphics" questions

A method for drawing computer graphics using a cursor, known as a turtle.

Integrate turtle module with tkinter canvas

I am trying to integrate the Turtle module into an interface I have created with TKInter, currently I have a …

python python-3.x tkinter turtle-graphics
Python turtle.setup() truncates canvas to screen size - how to avoid that?

To measure the rotation speed of a rod, I need to make a dial with a large number of alternating …

python turtle-graphics
Python: Checking If Coordinates Are Within Circle

Possible Duplicate: How can I make Turtle recognize a circle? I have a function that draws a few circles and …

python turtle-graphics
mathematical limits in python?

I am trying to do mathematical limits in python. I have defined a function for smoke import turtle t = turtle.…

python turtle-graphics
Is it possible to change turtle's pen stroke?

I need to draw a bar graph using Python's turtle graphics and I figured it would be easier to simply …

python graphics graph turtle-graphics
How to move a turtle stamp in python

How do I move a stamp in python turtle module? Here's my code so far: import turtle def draw_start(): …

python turtle-graphics stamp
Save turtle output as jpeg

I have a fractal image creator. It creates a random fractal tree like thing. When done, it prompts the user …

python turtle-graphics
Change appearance of turtle

I am programming in python 3.2.2 turtle. I am able to make the turtle follow my cursor when I clack but …

python turtle-graphics python-3.2 python-turtle
AttributeError: partially initialized module 'turtle' has no attribute 'Turtle' (most likely due to a circular import)

Does anybody have any idea why this code doesn't work? import turtle test = turtle.Turtle() test.color("orange") test.pensize(5) …

python attributes turtle-graphics
Spirograph Turtle Python

Does anybody here knows how to play with turtle and has an idea how to use turtle? I have trouble …

python turtle-graphics