Ejemplo 1: cómo cambiar el color de fondo en Python Turtle
import turtle
wn=turtle.Screen()
wn.bgcolor("black")
wn.title("This is my screen title!")
Ejemplo 2: imagen de fondo de una tortuga pitón
import turtle
window = turtle.Screen()
window.bgpic('source image') # image should be PNG or GIF
window.update() # to show the image
mainloop()
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)