youssef122312

Results 1 issues of youssef122312

i have to use tkinter menu farthermore it is not warking ```python self.menu = Menu(master=root, tearoff=False) self.menu.add_command(label="Copy", command=self.copy) self.menu.add_command(label="Paste", command=self.paste) self.menu.add_command(label="Cut", command=self.cut) self.menu.add_separator() self.menu.add_command(label="Select all", command=self.select_all) self.menu.add_separator() self.menu.add_command(label="About", command=self.about) root.bind("",...

question