Image d'arrière-plan Python Turtle

import turtle

window = turtle.Screen()
window.bgpic('source image') # image should be PNG or GIF
window.update() # to show the image


mainloop()
Sam Omar