turtle.undo()
Undo (repeatedly) the last turtle action(s). Number of available undo actions is determined by the size of the undobuffer.
1 2 3 4 5 | >>> for i in range(4): ... turtle.fd(50); turtle.lt(80) ... >>> for i in range(8): ... turtle.undo() |
Please login to continue.