I am creating a program in which i want to update values continuously after click start.
Until user clicks on Stop button i want values to keep updating
I use for loop for testing like
for i in range(1000):
window[-TEXT-].update(function())
Basically after the loop complete running it update the value directly last i value
I also use time.sleep(0.1) to keep track of it but didn't work