For a project i'm working on now, i need to create a function that is in the format Hours:Minutes: seconds: Fraction
where fraction is 1/10th of a second.
It should print out every one tenth of a second. I have no idea where to start or how to do this, and am fairly new to python.
it has to be as simple as possible and use time and time.sleep. I know time.sleep has to be time.sleep(.1), and to import time, but I dont know how to use nested loops with this.
Some help would be greatly appreciated :)