tkinter第一课出错了!
代码如下:import tkinter as tk
app=tk.Tk()
app.title('FishC Demo')
theLabel=tk.label(app,text='我的第二个窗口程序!')
theLabel.pack()
app.mainloop()
报错:AttributeError: module 'tkinter' has no attribute 'label'
我用的是jupyternotebook,代码跟小甲鱼课上的一样啊,怎么会出错了呢 是Label,不是label tk.Label 而非 tk.label ......写错了我,多谢!
页:
[1]