Here is my code
import time
t0=time.clock()
t1=time.clock()
time_difference = t1-t0
print time_difference
and output is
9.99999999998e-07
i want to assign value of t1-t0 to time_difference in float format having 2 digits after decimal how can i do that