In my code I have a variable called 'time'.
I set it to 2.0
(so I do not get an error when I subtract a float from an int).
I do time = time - 0.1
(this is so that when this line of code is repeated, it will be shorter by 0.1 seconds each time).
But when I try and put it into time.sleep
it won't let me (because it's a decimal)
How can I do milliseconds instead so that I can just subtract 100 milliseconds instead?