#coding:utf-8
'''
界面的开始学习
'''
import tkinter
top = tkinter.Tk()
quit = tkinter.Button(top,text='hello world',command=top.quit)
quit.pack()
tkinter.mainloop()
python3 tkinter的入门
最新推荐文章于 2024-09-16 08:00:59 发布
#coding:utf-8
'''
界面的开始学习
'''
import tkinter
top = tkinter.Tk()
quit = tkinter.Button(top,text='hello world',command=top.quit)
quit.pack()
tkinter.mainloop()