From 028888c76c300e0718af08dfe94323108b4eac88 Mon Sep 17 00:00:00 2001 From: np046039 <91821102+np046039@users.noreply.github.com> Date: Sun, 3 Oct 2021 12:55:03 +0530 Subject: [PATCH] Create Python Program to Measure the Elapsed Time in Python --- Python Program to Measure the Elapsed Time in Python | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 Python Program to Measure the Elapsed Time in Python 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)