Example Program: Simple Editor(cont'd) def buildMenus(self): menubar = Menu(self.root) self.root.config(menu=menubar) filemenu = Menu(menubar,tearoff=0) filemenu.add_command(label="New...", command=None) filemenu.add_command(label="Open...", command=None) filemenu.add_separator() filemenu.add_command(label = "Save", command=self.onSave) filemenu.add_command(label="Save as...", command=None) filemenu.add_separator() filemenu.add_command(label="Exit", command=self.onExit) menubar.add_cascade(label="File", menu=filemenu)