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

Python - Move Two Turtle Objects At Once

I would like to create a program where one turtle object moves to where a user clicks their mouse, … Read more Python - Move Two Turtle Objects At Once

Python Turtle Positional Errors

I've been trying to scale a Turtle drawing by a single axis and after some testing, I managed t… Read more Python Turtle Positional Errors

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

Entire Screen Not Moving With The Turtle

I am making a game in python using the turtle module in python. I want the screen to move with the … Read more Entire Screen Not Moving With The Turtle

Understanding Functions In Python

I'm trying to use the Turtle module in Python to draw the American flag using separate function… Read more Understanding Functions In Python

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()

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?

How To Detect If Turtle Is In The Radius Of X & Y And Then Do Something?

Currently, I'm trying to make a game and in the game I would like it so if the character is on … Read more How To Detect If Turtle Is In The Radius Of X & Y And Then Do Something?

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

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

Trying To Take User Input And Make A Turtle Dot

Trying to take user input in this case a numbers and make a turtle make a dot with the number that … Read more Trying To Take User Input And Make A Turtle Dot

How To Center Text Using "turtle" Module In Python

How can I draw 'turtle' text starting from the center of a window? I know how to create … Read more How To Center Text Using "turtle" Module In Python

Tic Tac Toe Game Using Turtle

This is for an extra credit assignment in Python. I've finished most until the last part where … Read more Tic Tac Toe Game Using Turtle

Python, Turtle Graphics, Key Bindings

I'm trying to figure out a way to make it to when I hold down a key the player will constantly … Read more Python, Turtle Graphics, Key Bindings

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

Set Dot Color Based On Where They Are In Python Turtle?

from turtle import * from random import randint speed('fastest') pendown() goto(200, 0) g… Read more Set Dot Color Based On Where They Are In Python Turtle?

How To Initialize Multiple Turtles In Python With Classes

I am a beginner at Python and I'm new to Stack Exchange. I'm trying to write a program that… Read more How To Initialize Multiple Turtles In Python With Classes

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()

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

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 prin… Read more Python: How To Reset The Turtle Graphics Window