At the moment I have defined many shapes in Turtle
using begin_poly
and end_poly
then register_shape
. I want to be able to put all of these values into a list and, with a press of a button, cycle through the list hence changing the Turtle
shape. I am having difficulty achieving this with Itertools
and was wondering for some assistance on how I could achieve this.
Edit: I got it working in the end, I appended all the values into a list then used a counter to choose which index to go to.