I have a few coordinates in my turtle graphics that I want the turtle to move between, is it possible for it to move through the list of coordinates one by one and stop at a random one? if I do random.choice(coordinates) the turtle will just move to that coordinate, but I want it to move through the list of coordinates and stop at a randomly chosen one.
coordinates = ((20,-125),(50,-115),(80,-95),(100,-75),(120,-50),(130,-20),(125,20))