How do I edit my code to make the 'next' button lead to a blank page IN THE SAME WINDOW? (not a new window ) How do I edit my code to make the 'next' button lead to a blank page IN THE SAME WINDOW? (not a new window ) tkinter tkinter

How do I edit my code to make the 'next' button lead to a blank page IN THE SAME WINDOW? (not a new window )


You can delete everything on the canvas with the delete method. If you pass it the literal string "all" it will delete everything on the canvas.

def UserIdentification():    canvas.delete("all")