def f():
m=tkinter.Message(guo,width=360)
m.config(text="今天请张老师给大家讲一下Message的用法!",bg="red")
m.grid(row=1,column=1,ipady=50)
b=tkinter.Button(guo,text="猜一猜",width=10,height=2,command=f)
b.grid(row=0,column=0)
def f():
m=tkinter.Message(guo,width=360)
m.config(text="今天请张老师给大家讲一下Message的用法!",bg="red")
m.grid(row=1,column=1,ipady=50)
b=tkinter.Button(guo,text="猜一猜",width=10,height=2,command=f)
b.grid(row=0,column=0)