I am trying to set the background color of my turtle graphic, is there a way can set the background color for python turtle?
Use turtle.bgcolor(*args)
.
For instance:
import turtle
turtle.bgcolor("black")
or
from turtle import *
bgcolor("black")
Read the documentation at http://docs.python.org/library/turtle.html#turtle.bgcolor