-5

我是 Python 新手,所以我尝试使用 Pyscripter 编辑器测试一些简短的脚本/程序,但我无法让它工作。没有输出。

from Tkinter import*
class Myclassx:
     def __init__(self):
        windx = Tk()
        btnx = Button(text="okayx",command =self.printx)
        btnx.pack()
     def printx(self):
        print "see you later"
oleyx=Myclassx()

非常感谢。

4

1 回答 1

4

如果你的意思是你没有看到窗口,你错过了windx.mainloop()

from Tkinter import*
class Myclassx:
     def __init__(self):
        windx = Tk()
        btnx = Button(text="okayx",command =self.printx)
        btnx.pack()
        windx.mainloop() # <----
     def printx(self):
        print "see you later"

oleyx=Myclassx()
于 2013-09-11T13:48:06.840 回答