From 7484aa6fdae37151c62b230f76642bfc3daebfbd Mon Sep 17 00:00:00 2001 From: Sindhuja-G Date: Tue, 3 Feb 2026 19:27:52 +0530 Subject: [PATCH 1/2] Commit changes --- Programs/P01_hello.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Programs/P01_hello.py b/Programs/P01_hello.py index 4039621..f50dccb 100644 --- a/Programs/P01_hello.py +++ b/Programs/P01_hello.py @@ -8,8 +8,10 @@ def justPrint(text): increment_value=20 difference = increment_value - base_value divide_value = increment_value / base_value + multiply_value = increment_value * base_value print("Difference is:", difference) print("Divide value is:", divide_value) + print("Multiply value is:", multiply_value) if __name__ == '__main__': justPrint('Hello Sindhuja') From c228e7572d4cc8dd062c2fcdc213a6a1ac550fe6 Mon Sep 17 00:00:00 2001 From: Sindhuja-G Date: Tue, 3 Feb 2026 19:55:57 +0530 Subject: [PATCH 2/2] Commit changes --- Programs/P01_hello.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Programs/P01_hello.py b/Programs/P01_hello.py index f50dccb..49d1be0 100644 --- a/Programs/P01_hello.py +++ b/Programs/P01_hello.py @@ -9,6 +9,8 @@ def justPrint(text): difference = increment_value - base_value divide_value = increment_value / base_value multiply_value = increment_value * base_value + floor_division = increment_value // base_value # // -> integer division + print("Floor Division:", floor_division) print("Difference is:", difference) print("Divide value is:", divide_value) print("Multiply value is:", multiply_value)