цикл python tkinter
есть код
import tkinter as tk
from tkinter import messagebox
obj = tk.Tk()
obj.wm_attributes("-fullscreen", 1)
obj.wm_attributes("-topmost", 1)
obj.title("Button Cliker!")
_count = 0
def b_press():
global _count
_count += 1
count.configure(text=f"{_count: ,} $")
click_img = tk.PhotoImage(file="res\\img\\bc2.png")
click_button = tk.Button(obj, image=click_img, border=0, command=b_press)
click_button.place(x=(obj.winfo_width()+1250)/2, y=(obj.winfo_height()+650)/2)
count = tk.Label(obj, text=f"{_count: ,} $", font=("Consolas 16 bold italic"))
count.place(x=0, y=0)
obj.mainloop()
мне нужно чтобы перед obj.mainloop()
бесконечно вызывался метод obj.after(1000, b_press)
я пытался но у меня были проблемы с циклом.
а вот как я пытался:
while True:
obj.after(1000, b_press)
а программа не запускалась. кто-нибудь может предложить вариант ответа!!!!!