I need an alternative to "delay" actions on a LOOP. When using time.sleep(1) the whole process pauses for a second. The print 'something' should be executed after every 1 second, 50 times and not interrupting the rest of the process.
Actual code:
for num in range(50, -1, -1):
print 'something'
time.sleep(1)