Making a python script run at a set rate.
- by Matt1024
How can I make a python loop run at a set rate regardless of how long it takes to execute commands in the loop (providing the commands take less time to run than the loop is allowed)?
How can I make this run every 0.25 seconds, for example?
while True:
print("OK")