0
我需要它,所以當我按下按鈕時,它將在2個標籤之間切換,當我設法創建第二條語句時,現在我需要能夠在兩者之間切換。我不知道該怎麼做才能得到這個工作,請幫助在tkInter中按下按鈕時需要幫助開關標籤
def changeLabelText():
z = True
print(z)
if z == True:
print("The current text is", l1['text'])
z = False
return z
elif z == False:
print("The current text is", l12['text'])
z = True
return z
l1['text'] = "Changed Text"
l12['text'] = "Text"
b1 = Button(app, text="Change Text", command=changeLabelText)
l1 = Label(app, text="Text")
l12 = Label(app, text="New Text")