Skip to content Skip to sidebar Skip to footer
Showing posts with the label Turtle Graphics

Python Turtle Wait For Click

I'd like to be able to pause and contemplate each step of this program, and move on to the next… Read more Python Turtle Wait For Click

Python Turtle `while True` In Event Driven Environment

I have read in several posts here on Stack Overflow that 'An event-driven environment like turt… Read more Python Turtle `while True` In Event Driven Environment

Textinput() Equivalent In Python 2.x

I need to accept info from the user in python's turtle. however the turtle.textinput function o… Read more Textinput() Equivalent In Python 2.x

Turtle Graphics Drawing Over Itself

This should be a very simple question, however, it is proving difficult for me. I'm rather new… Read more Turtle Graphics Drawing Over Itself

How To Handle Clicks On A Turtle And Clicks Off Of A Turtle Separately?

Using the Python 3 'turtle' module, I am trying to handle two different click conditions se… Read more How To Handle Clicks On A Turtle And Clicks Off Of A Turtle Separately?

Get Coordinates Of "treasure" (turtles) In Maze Game That Uses Python Tkinter And Turtle

I am using Python 3 to make a maze using tkinter and turtle graphics. Most of the code works, excep… Read more Get Coordinates Of "treasure" (turtles) In Maze Game That Uses Python Tkinter And Turtle

Turtle Does Not Run More Than Once In Jupyter Notebook

I am trying to run some turtle code in jupyter notebook. When I run the code once, the code runs fi… Read more Turtle Does Not Run More Than Once In Jupyter Notebook

How To Fix Inconsistent Frame Rate (speed) In Python Turtle

I a made pong game by following this tutorial https://youtu.be/C6jJg9Zan7w The problem I'm havi… Read more How To Fix Inconsistent Frame Rate (speed) In Python Turtle

Filling Rectangles With Colors In Python Using Turtle

How can I draw a rectangle where: the smallest is 5 in height and each consecutive rectangle adds t… Read more Filling Rectangles With Colors In Python Using Turtle

Building A Built-in Text Field For Turtle, While Statement Doesn't Work

I have built a text field module that has one problem: why does Python IDLE not work for while...br… Read more Building A Built-in Text Field For Turtle, While Statement Doesn't Work

Python Turtle Module Causes Os X To Crash

I'm working through Think Python chapter 4, where they tell you to type the following to see if… Read more Python Turtle Module Causes Os X To Crash

Need Help Making A Hilbert Curve Using Numbers In Python

I want to make a function that will create a Hilbert Curve in python using numbers. The parameters … Read more Need Help Making A Hilbert Curve Using Numbers In Python

Why Does Turtle Open An Even Smaller Screen When The Canvas Is Small?

I'm trying to draw on a small 200x200 screen using turtle, however the drawing doesn't pop … Read more Why Does Turtle Open An Even Smaller Screen When The Canvas Is Small?

"stop" Button In Tkinter

I'm trying to have a turtle animation start with a button and stop with a button. It's very… Read more "stop" Button In Tkinter

Turtle.screen().screensize() Not Outputting The Right Screensize

I have written some code to place dots all around the screen randomly; however, it does not cover t… Read more Turtle.screen().screensize() Not Outputting The Right Screensize

Python Turtle Screen.onkey()

I am a beginner in python and I am building a Snake game where on the key Strokes snake can be cont… Read more Python Turtle Screen.onkey()

Python Turtle Graphics Keyboard Commands

Anybody have any insight into controlling turtle graphics in python 2.7 with keyboard commands? I h… Read more Python Turtle Graphics Keyboard Commands

Python Terminator Error

I'm working on a Python project with a friend of mine for school. We have imported Turtle and M… Read more Python Terminator Error

Turtle Gives Error: AttributeError: 'Turtle' Object Has No Attribute 'onkeyrelease'

I am trying to add 1 every time I release a key: from turtle import * import turtle turtle1 = Turtl… Read more Turtle Gives Error: AttributeError: 'Turtle' Object Has No Attribute 'onkeyrelease'

Python Turtle Opacity?

Just wondering, is it possible to make a turtle draw/fill with semi-transparent ink? Something like… Read more Python Turtle Opacity?