How do I time how long does my code run in DBX

Sarah127
New Contributor III

How do I time how long does my code run in DBX.

Jbohning
New Contributor III

Hi, you can use the standard python timeit function. 

''' %timeit

print("hello world")

'''

View solution in original post