timer python

                  import timeit

start = timeit.timeit()
# code stuff
end = timeit.timeit()
print(round(start - end, 2))