Top "Turtle-graphics" questions

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

How to hide a turtle icon/pointer in Python

When using Python Turtle, how do you hide turtle icon(s)/pointer(s) in turtle graphics in Turtle code so …

python visibility turtle-graphics
Turtle Graphics Not Responding

I am creating diagrams with the turtle package in Python, and it is successful to some extent, except for one …

python windows-7 turtle-graphics
Python Turtle: Draw concentric circles using circle() method

I was showing a grandson patterns drawn with Python's Turtle module, and he asked to see concentric circles. I thought …

python turtle-graphics
Python Turtle pen colour

When I call t.pencolor('83, 58, 27') (turtle is imported as t) I get the TurtleGraphicsError: bad color string: 83, 58, 27 even …

python turtle-graphics
Python: How to reset the turtle graphics window

I am a making a blackjack game with cards using turtle and each time I play a hand turtle just …

python turtle-graphics
Sierpinski triangle recursion using turtle graphics

I am trying to write a program that draws a sierpinski tree with python using turtle. Here is my idea: …

python recursion turtle-graphics
Can't import turtle module in Python 2.x and Python 3.x

I want to play with turtle module in Python. But when i do import turtle module, i've the following error: $ …

python user-interface turtle-graphics
Python Turtle Module- Saving an image

I would like to figure out how to save a bitmap or vector graphics image after creating a drawing with …

python vector-graphics turtle-graphics
How to close the Python turtle window after it does its code?

I'm working on a simple program in Python 3.5 that contains turtle graphics and I have a problem: after the turtle …

python python-3.x turtle-graphics
Turtle in python- Trying to get the turtle to move to the mouse click position and print its coordinates

I'm trying to get the mouse position through Python turtle. Everything works except that I cannot get the turtle to …

python python-3.x turtle-graphics