SyntaxFix
Write A Post
Hire A Developer
Questions
Equivalent in python would be:
>>> import time >>> tic = time.clock() >>> toc = time.clock() >>> toc - tic
If you are trying to find the best performing method then you should probably have a look at timeit.
timeit