I have these few lines in a class in my program but it doesnt appear. No errors are shown and when i "print(menubar)" and address "0.4.." or "4..." appears
menubar = Menu(master = self.mainGUI)
fileMenu = Menu(menubar)
fileMenu.add_command(label="Exit", command= destroyMethod)
menubar.add_cascade(label="File", menu=fileMenu)
destroy method does work and is existing.