There is a certain While infinite loop statement, but given the Time.sleep(0.001) condition, it only executes 700 times per second. I want to run 5,000 to 50,000 times per second, but the argument of time.sleep() can't be lower than 0.001?
import time
i = int()
while True:
time.sleep(0.001)
#~
#Code Block(It's private because it's code I'm reluctant to reveal.)
#~
print("%d"&i) #700 print() calls per second.