我的代碼給了我這個錯誤,我不能爲我的生活弄清楚爲什麼它告訴我「NameError:name'Button'沒有被定義。」在Tkinter中,我認爲Button應該添加一個按鈕?爲什麼我的代碼返回「名稱」按鈕「未定義」?
import Tkinter
gameConsole = Tkinter.Tk()
#code to add widgets will go below
#creates the "number 1" Button
b1 = Button(win,text="One")
gameConsole.wm_title("Console")
gameConsole.mainloop()
按鈕是'TKinter'命名空間的一部分。使用'TKinter.Button(...)'。請記住,對於新的代碼庫,推薦的解釋器版本是Python 3. Python 2支持在2020年結束。 –