我是 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()
非常感谢。