Как записать время выполнения в Python

import time

start = time.time()
print("hello")
end = time.time()
print(end - start)
Smoggy Sloth