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

Python Turtle.terminator Even After Using Exitonclick()

I have tried to make functions for turtle to make it extremely easy to draw shapes and the code loo… Read more Python Turtle.terminator Even After Using Exitonclick()

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?

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

How Can I Make Turtle Recognize A Circle?

I am trying to make a Python program with Turtle Graphics that draws 2 circles overlapping (like a … Read more How Can I Make Turtle Recognize A Circle?

How To Make The Turtle Follow The Mouse In Python 3.6

I'm assigned to create a similar version of slither.io in python. I planned on using Turtle. Ho… Read more How To Make The Turtle Follow The Mouse In Python 3.6

Make Key Bindings Work For Space Invaders Game

I'm doing a tutorial to make 'Space Invaders' in order to learn Python but I'm enco… Read more Make Key Bindings Work For Space Invaders Game

Importerror: No Module Named Tkinter When Importing Swampy.turtleworld

I am using Python 3.4 and following along the book 'Think Python: how to think like a computer … Read more Importerror: No Module Named Tkinter When Importing Swampy.turtleworld

How Do I Access A Dictionary From A Function To Be Used In Another Function?

For an assignment I have to take a string as an input and write it as a file. Then, a function take… Read more How Do I Access A Dictionary From A Function To Be Used In Another Function?

How To Make Python Text Into A Button In Python Turtle?

I want to make the word 'CAT' into a button, so when it's clicked it says 'CAT'… Read more How To Make Python Text Into A Button In Python Turtle?

How Do I Get The Turtle Canvas Screen To Move With A Turtle Module?

For a class project, I'm trying to make a Rogue-like game with Python (3.7.3) Turtle. I want to… Read more How Do I Get The Turtle Canvas Screen To Move With A Turtle Module?

Rounded Edge Rectangles With Python Turtle

Is there another way to add a rounded edge to square/rectangle shapes apart from drawing a circle a… Read more Rounded Edge Rectangles With Python Turtle

Create More Than Two Turtles And Moving Them

How to make few turtles in a screen and make them move one at once? Solution 1: You can use turtle… Read more Create More Than Two Turtles And Moving Them

Why Does My Python Turtle Shape Size Decrease When Pressing 'shift'

I am trying to create a turtle in Python so I could increase/ decrease it's size by pressing +/… Read more Why Does My Python Turtle Shape Size Decrease When Pressing 'shift'

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

Why Is Turtle Lightening Pixels?

My program for creating a Mandelbrot set has a bug: whenever the pen changes colors, and every 42nd… Read more Why Is Turtle Lightening Pixels?

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

How To Output Variable On Turtle Screen?

I want to output a variable on the Turtle screen. But as the variable changes, the previous value i… Read more How To Output Variable On Turtle Screen?

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

How Do You Set A Turtle's Shape To A Pil Image

Quick question: Is it possible to register a python turtle shape from a PIL Image Object? Preferrab… Read more How Do You Set A Turtle's Shape To A Pil Image

Drawing Polygon With N Number Of Sides In Python 3.2

I have to write a program in Python that reads the value n and draws a polygon of n sides on the sc… Read more Drawing Polygon With N Number Of Sides In Python 3.2