diff --git a/Python Program to Measure the Elapsed Time in Python b/Python Program to Measure the Elapsed Time in Python new file mode 100644 index 0000000..17b00a7 --- /dev/null +++ b/Python Program to Measure the Elapsed Time in Python @@ -0,0 +1,8 @@ +import time + +start = time.time() + +print(23*2.3) + +end = time.time() +print(end - start)