比方說,我有一個按鈕:如何使用小部件選項值作爲條件來製作if語句?
tl.config(bd=0 ,image=photo1 ,width="100",height="100",command=lambda: functionPlus(tl))
功能是:
def functionPlus(button):
global turn
if (turn==1 or turn==3 or turn==5 or turn==7 or turn==9):
button.config(image=photo2,width="100",height="100")
turn +=1
elif (turn==2 or turn==4 or turn==6 or turn==8) :
button.config(image=photo3,width="100",height="100")
turn+=1
我想補充一個「如果」的功能,這將有作爲條件的圖像按鈕。例如:
if button.config(image=photo2 == True) :
anotherFunction()
在此先感謝。
好吧!感謝您的解決方案和您的建議,代碼現在正在工作。 –