I have been making a simple list function to make add a bunch of images for turtles to use, however I keep getting this error when running it: _tkinter.TclError: couldn't open "<turtle.Turtle object at 0x000001C20E311D90>_1.gif": no such file or directory
This is my code for it.
for i in Citygroups:
i.up()
wn.addshape(str(i)+'_1.gif')
wn.addshape(str(i)+'_2.gif')
wn.addshape(str(i)+'_3.gif')
So I was wondering if there was a way to convert the <turtle.Turtle object at 0x000001C20E311D90>
to the name of the turtle. (IE: City_l1)