how to measure time taken in python code example
Example: python measure time
import time
start = time.time()
print("hello")
end = time.time()
print(end - start)
import time
start = time.time()
print("hello")
end = time.time()
print(end - start)