tkinker模块怎么隐藏按钮or文本啊?
上网查找了半天,有说用destroy的,有说用pack_forget的,最后都报错AttributeError: 'NoneType' object has no attribute 'xxxxxxx',还是我的使用方法有问题?求个方法。
代码如下:
import tkinter as tk
def click_b():
b.pack_forget()#报错
a=tk.Tk()
a.geometry("500x500")
a.resizable(height=False, width=False)
b=tk.Button(a,text="12345",anchor="center",width=10,height=2,command=click_b).pack()
a.mainloop()