Здавствуйте! Я новичок в Питоне! Помогите!
Цифра на кнопке начинается с 40, при нажатий в консоле добовляется 1, а в окне остается 40? Где ошибка?
Вот код…
__________________________________________________
from tkinter import *
w1 = Tk()
leftpercent = 40
def lppo():
____ global leftpercent
____ leftpercent = leftpercent + 1
____ print (leftpercent)
leftbutton = Button(w1, text = leftpercent, bg = ‘#80d4ff’, height = 2, width = 35, command = lppo)
leftbutton.place(relx = .05, rely = .80)
w1.mainloop()
______________________________________________________