From b4ebea37913f62ad774a60bfd0b4b7f93ca5cf89 Mon Sep 17 00:00:00 2001 From: Sindhuja-G Date: Tue, 3 Feb 2026 17:38:49 +0530 Subject: [PATCH 1/3] Added changes --- Programs/P01_hello.py | 4 +++- Programs/login.py | 2 ++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/Programs/P01_hello.py b/Programs/P01_hello.py index 3dd3397..db17d70 100644 --- a/Programs/P01_hello.py +++ b/Programs/P01_hello.py @@ -5,10 +5,12 @@ def justPrint(text): '''This function prints the text passed as argument to this function''' print(text) base_value = 10 - b=20 + increment_value=20 difference = increment_value - base_value + print("Difference is:", difference) if __name__ == '__main__': justPrint('Hello Sindhuja') + justPrint('Hello Sindhuja') diff --git a/Programs/login.py b/Programs/login.py index d4f5233..ae13e09 100644 --- a/Programs/login.py +++ b/Programs/login.py @@ -30,3 +30,5 @@ def login(self, email, password): print(app.login("wrong@test.com", "123")) # Test case 2 print(app.login("wrong@test.com", "123")) # Test case 3 (locks account) print(app.login("user@test.com", "Password@123")) # Should fail because account is locked +print("TC4:", app.login("wrong@test.com", "123")) # This will now lock +print("TC5:", app.login("user@test.com", "Password@123")) # Locked account case From 1fdbe5757353d96771519ca65beac2018db9c997 Mon Sep 17 00:00:00 2001 From: Sindhuja-G Date: Tue, 3 Feb 2026 17:42:37 +0530 Subject: [PATCH 2/3] PR changes --- Programs/P01_hello.py | 1 + Programs/login.py | 1 + 2 files changed, 2 insertions(+) diff --git a/Programs/P01_hello.py b/Programs/P01_hello.py index db17d70..1862630 100644 --- a/Programs/P01_hello.py +++ b/Programs/P01_hello.py @@ -12,5 +12,6 @@ def justPrint(text): if __name__ == '__main__': justPrint('Hello Sindhuja') justPrint('Hello Sindhuja') + justPrint('Hello Sindhuja') diff --git a/Programs/login.py b/Programs/login.py index ae13e09..fb9e10c 100644 --- a/Programs/login.py +++ b/Programs/login.py @@ -32,3 +32,4 @@ def login(self, email, password): print(app.login("user@test.com", "Password@123")) # Should fail because account is locked print("TC4:", app.login("wrong@test.com", "123")) # This will now lock print("TC5:", app.login("user@test.com", "Password@123")) # Locked account case +print("TC6:", app.login("user@test.com", "Password@123")) # Locked account case From fcf8ffd274414f2e6c0d9b025e6fedf2915b4bfd Mon Sep 17 00:00:00 2001 From: Sindhuja-G Date: Tue, 3 Feb 2026 18:21:01 +0530 Subject: [PATCH 3/3] 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 1862630..4039621 100644 --- a/Programs/P01_hello.py +++ b/Programs/P01_hello.py @@ -7,7 +7,9 @@ def justPrint(text): base_value = 10 increment_value=20 difference = increment_value - base_value + divide_value = increment_value / base_value print("Difference is:", difference) + print("Divide value is:", divide_value) if __name__ == '__main__': justPrint('Hello Sindhuja')