python3 elapsed time code example
Example: python elapsed 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)