Untitled

Anonymous
plain_text
10/07/2024 4:49 AM
324 B
14
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