Top "Turtle-graphics" questions

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

Attribute Error: 'list' object has no attribute 'split'

I am trying read a file and split a cell in each line by a comma and then display only …

python list split turtle-graphics
Python Turtle, draw text with on screen with larger font

I'm using python turtle's write method to write text on the screen like this: turtle.write("messi fan") The size …

python turtle-graphics
Turtle graphics - How do I control when the window closes?

I have a small python script which draws some turtle graphics. When my script has finished running, the turtle screen …

python turtle-graphics window-management
How to speed up python's 'turtle' function and stop it freezing at the end

I have written a turtle program in python, but there are two problems. It goes way too slow for larger …

python graphics draw turtle-graphics
Is there a way can set the background color for python turtle?

I am trying to set the background color of my turtle graphic, is there a way can set the background …

python turtle-graphics
How Can I Fill These Squares in Turtle - Python

I am trying to fill the color in these squares: Right now the turtle only fills the corners of theses …

python turtle-graphics
Turtle graphics, draw a star?

I want to draw a filled-in star, such as: I have this code so far: def draw_star(size,color): …

python turtle-graphics
Function missing 2 required positional arguments: 'x' and 'y'

I am trying to write a Python turtle program that draws a Spirograph and I keep getting this error: Traceback (…

python turtle-graphics
How to draw a semicircle in Python turtle only

How to draw a semi circle(half circle) in python turtle only? I can only use Python turtle. I have …

python-2.7 turtle-graphics