printcounter = 0 # Whatever a while loop is in Python while (...): ... if (printcounter == 1000000): print('Progress report...') printcounter = 0 ... printcounter += 1