Let me start off by saying I know almost nothing about python but have to write a program in three different languages (already done in java and c++).
I need to be a
You could do something like this:
import time start = time.time() A() end = time.time() print "Took %f ms" % ((end - start) * 1000.0)