Untitled

 avatar
unknown
plain_text
6 months ago
242 B
2
Indexable
import timeit

def your_function():
    # Your code here
    pass

# Measure the time taken by the function
execution_time = timeit.timeit("your_function()", globals=globals(), number=1000)
print(f"Execution time: {execution_time}")
Editor is loading...
Leave a Comment