I want to execute a piece of my code in exactly the same time every time I execute it, somewhat like playing a media file... (the same piece of code is executed in exactly the same amount of time every time)
Is this possible in python?
I want to execute a piece of my code in exactly the same time every time I execute it, somewhat like playing a media file... (the same piece of code is executed in exactly the same amount of time every time)
Is this possible in python?
I should think this would be impossible in an operating system which interleaves instructions to simulate simultaneous execution of multiple threads.
You would need a real-time library or language in order to stipulate deadlines for your code, and even then execution cannot be guaranteed in the allotted time.
This should do the trick: