Top "Turtle-graphics" questions

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

Drawing a fractal tree in Python, not sure how to proceed

I have this so far in python import turtle import math t = turtle.Turtle() t.shape("turtle") t.lt(90) lv = 11 …

python turtle-graphics fractals
Python Turtle Graphics Window only Opens Briefly then Closes

I have recently begun using the turtle module in Python, and I admit, I am a complete novice. I have …

python graphics module turtle-graphics
Setting the angle of a turtle in Python

I'm creating a function that will cause a giraffe to move in a certain direction and distance (don't ask). If …

python angle turtle-graphics
Trying to draw a checkerboard using Turtle in Python - how do I fill in every other square?

I'm trying to draw a checkerboard. I drew the board, but now I have to define a function (a loop) …

python loops turtle-graphics
Don't understand this AttributeError: module 'turtle' has no attribute 'Turtle'

#archimedes spiral by rays import math import turtle def spiral(t, a, b): diff=5 number=500 for i in range(number): …

python python-3.x turtle-graphics python-turtle
Python Random Color Generation using Turtle

I need to generate a random color using r g b values to fill in these rectangles for a python …

python random colors turtle-graphics
Use Python turtle to make circles wtihout the circle function

I have this assignment for school: Build a Snowman without turtle circle function The snowman should be on a blue …

python geometry turtle-graphics
Drawing a fractal tree in Python

I am trying to draw a fractal tree in Python, which has 3 branches. I know how to draw a tree …

python turtle-graphics fractals
how to rotate turtle shape in python

I registered the shape of my turtle in my roulette game to a roulette wheel. I want the wheel to …

python for-loop python-3.x rotation turtle-graphics
How to fully delete a turtle

I made a small tkinter game that uses turtle for graphics. It's a simulation of the Triangle Peg Game from …

python turtle-graphics