From 8b8d32a1d8a14f20807b41349cd526ff1ec82be7 Mon Sep 17 00:00:00 2001 From: Sindhuja Golagani Date: Sun, 28 Dec 2025 12:46:49 +0530 Subject: [PATCH] Change greeting from 'Hello' to 'Hello Sindhu' --- 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 5754bc3..96fa755 100644 --- a/Programs/P01_hello.py +++ b/Programs/P01_hello.py @@ -6,4 +6,4 @@ def justPrint(text): print(text) if __name__ == '__main__': - justPrint('Hello') + justPrint('Hello Sindhu')