I\'ve looked around a bit, but I can\'t find an answer to my error. Here is the code:
import tkinter as tk root=tk.Tk() class Page(tk.Frame): \'\'\'Ena
Your Page init method should call Frame's init.
Page
Frame
class Page(tk.Frame): '''Enables switching between pages of a window.''' def __init__(self): super(Page, self).__init__() self.widgets={} self.grid(column=0,row=0)