undo-redo

Python turtle : Create a redo function

Python turtle : Create a redo function Question: I know how to undo a drawing step in python turtle with turtle.undo(). But how can I make a Redo function ? from tkinter import * …#Just some other things def undoStep(): turtle.undo() def redoStep(): #What to put here root.mainloop() Asked By: Hung Truong || Source Answers: …

Total answers: 1