1import turtle
2from os import path
3#WARNING: IMAGES MUST BE .GIF
4currentDir = os.abspath(path.curdir) #get the python file location
5
6wn = turtle.Screen()
7wn.setup(width=700,height=400)
8wn.title("image test")
9
10wn.addshape(currentDir+"\\Resources\\image.gif") #u can make images in a new folder
11
12myImage = turtle.Turtle()
13myImage.speed(0) #so it will draw the image instantly
14myImage.shape(currentDir+"\\Resources\\image.gif") #give your object the image
15myImage.penup() #if you dont do this, it will draw a line
16myImage.goto(0,0) #give your image a location
17
18while True:
19 wn.update() #update your window