From d1b6a0932f8a2862a1ebac364fba14dd38eabafc Mon Sep 17 00:00:00 2001 From: blueloveTH Date: Mon, 20 Feb 2023 05:21:58 +0800 Subject: [PATCH] Create loop_3.py --- benchmarks/loop_3.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 benchmarks/loop_3.py diff --git a/benchmarks/loop_3.py b/benchmarks/loop_3.py new file mode 100644 index 00000000..24725f13 --- /dev/null +++ b/benchmarks/loop_3.py @@ -0,0 +1,5 @@ +for i in range(10000000): + x = i + 1 + y = x * 2 + z = y - 5 + a = x * y // z \ No newline at end of file