Как рассчитать время на питоне

import time
start = time.process_time()
# your code here    
print(time.process_time() - start)
Vast Vulture