I've read the answer here and still can't get a custom shape to work for Python Turtle.
My code is here:
import turtle
screen = turtle.Screen()
screen.register_shape('car', 'car.gif')
t = turtle.Turtle()
t.shape('car')
I'm getting AttributeError: 'str' object has no attribute '_type'
but I don't know why. The image is a genuine .gif as required.
Any ideas please?