From 4a473e92d4522b7cb78a39c0cda352862e9b30ea Mon Sep 17 00:00:00 2001 From: Sindhuja-G Date: Tue, 3 Feb 2026 19:59:05 +0530 Subject: [PATCH 1/4] 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 49d1be0..e697dae 100644 --- a/Programs/P01_hello.py +++ b/Programs/P01_hello.py @@ -10,10 +10,12 @@ def justPrint(text): 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) + print("Modulus:", increment_value % base_value ) # % -> remainder if __name__ == '__main__': justPrint('Hello Sindhuja') From ee560ef79a486c3d04d6a2df1b4888b565f2d9c7 Mon Sep 17 00:00:00 2001 From: Sindhuja-G Date: Tue, 3 Feb 2026 20:11:22 +0530 Subject: [PATCH 2/4] Commit changes --- Programs/P01_hello.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Programs/P01_hello.py b/Programs/P01_hello.py index e697dae..6d8ff9a 100644 --- a/Programs/P01_hello.py +++ b/Programs/P01_hello.py @@ -12,7 +12,7 @@ def justPrint(text): floor_division = increment_value // base_value # // -> integer division print("Floor Division:", floor_division) - print("Difference is:", difference) + print("Difference is:", increment_value - base_value) print("Divide value is:", divide_value) print("Multiply value is:", multiply_value) print("Modulus:", increment_value % base_value ) # % -> remainder From c10856bd768013acf0efc8fd39e5886206efe516 Mon Sep 17 00:00:00 2001 From: Sindhuja-G Date: Tue, 3 Feb 2026 20:37:52 +0530 Subject: [PATCH 3/4] Commit changes --- Programs/P01_hello.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Programs/P01_hello.py b/Programs/P01_hello.py index 6d8ff9a..aba6808 100644 --- a/Programs/P01_hello.py +++ b/Programs/P01_hello.py @@ -15,7 +15,7 @@ def justPrint(text): print("Difference is:", increment_value - base_value) print("Divide value is:", divide_value) print("Multiply value is:", multiply_value) - print("Modulus:", increment_value % base_value ) # % -> remainder + # print("Modulus:", increment_value % base_value ) # % -> remainder if __name__ == '__main__': justPrint('Hello Sindhuja') From 825d83792250a35d2eee6a5d35175b7cd20b681f Mon Sep 17 00:00:00 2001 From: Sindhuja-G Date: Tue, 3 Feb 2026 20:42:38 +0530 Subject: [PATCH 4/4] Commit changes --- Programs/P01_hello.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Programs/P01_hello.py b/Programs/P01_hello.py index aba6808..6d8ff9a 100644 --- a/Programs/P01_hello.py +++ b/Programs/P01_hello.py @@ -15,7 +15,7 @@ def justPrint(text): print("Difference is:", increment_value - base_value) print("Divide value is:", divide_value) print("Multiply value is:", multiply_value) - # print("Modulus:", increment_value % base_value ) # % -> remainder + print("Modulus:", increment_value % base_value ) # % -> remainder if __name__ == '__main__': justPrint('Hello Sindhuja')