I am currently trying to create a button that can be hidden or shown with a definition (def).
root.Tk()
c = Canvas(root, wodth=1600, Height=100, bg='black')
root.attributes('-fullscreen', True)
c.pack
b = Button(c, text='I want to be unvisiblie')
b.place(x=210, y=88)
root.after(1)
Could you help me, Please? How can I do this (Please without any self-command)? Thanks