我的Loop的范围是0到100000,我想在进度条中显示它的准确进度,但是我有一个问题,即使完成100%的进度后,进度条仍会运行,所以在进行循环时如何显示实际的进度指示甚至100000次
我在python pyqt5中的代码:-
bar.setMinimum(0)
bar.setMaximum(100)
for i in range(0,100000):
### Here is my function that perform my process and delay for 1
## second
bar.setValue(i)