我已經看了一下現有的問題,但到目前爲止我還沒有找到解決方案。'NoneType'對象沒有屬性'__getitem__' - Tkinter
我是新來的Python編程語言,並且已經開始使用Tk進行遊戲,但在試圖從「複選框」中獲取一個值或更改標籤值時,仍然收到以下錯誤消息:
「NoneType」對象有沒有屬性「的GetItem」
下面是我點擊一個按鈕
from Tkinter import *
the_window = Tk()
the_window.title('Button Change Colour')
def change_to_red():
colour_area['text']='Red'
colour_area = Label(the_window, bg='Grey', text = 'test', width = 40, height = 5).grid(row = 1, column = 1, padx = 5, pady = 5)
red_button = Button(the_window, text='Red', width = 5, command = change_to_red).grid(row = 2, column = 1)
the_window.mainloop()
時收到錯誤代碼的我一個例子,我敢肯定,這一些小/愚蠢的東西,但會感激你的幫助! :)
@AndrewL。是的,你當然是對的,^^這是正確的鏈接。 –