online timing python code code example
Example 1: how to time a python script
from datetime import datetime
start = datetime.now()
# some kind of code
print(datetime.now() - start)
Example 2: python how to measure code run in time
import time
start_time = time.time()
main()
print("--- %s seconds ---" % (time.time() - start_time))