I want to create a progress bar (GUI) in python. I am not sure how to do this in graphical version
I want it to print status in the output box too.
I am using progressbar2 right now
So here is my code:
import time
import progressbar
for i in progressbar.progressbar(range(100)):
time.sleep(0.02)