Which is better to use for timing in Python? time.clock() or time.time()? Which one provides more accuracy?
for example:
start = time.clock() ... do
To the best of my understanding, time.clock() has as much precision as your system will allow it.