time passed python

92

time passed python -

import time

start = time.time()
print("hello")
end = time.time()
print(end - start)

Comments

Submit
0 Comments