Untitled
unknown
plain_text
a year ago
242 B
4
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