From 37eb1e8330945ace69719680baeb34f2e8e5fcde Mon Sep 17 00:00:00 2001 From: Sumanpal3108 <64361664+Sumanpal3108@users.noreply.github.com> Date: Sat, 3 Oct 2020 18:07:20 +0530 Subject: [PATCH 1/2] Update py-hello-world-Suman.py Hello, World! in Python --- hackerrank/python/py-hello-world.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hackerrank/python/py-hello-world.py b/hackerrank/python/py-hello-world.py index 1e2b9ded..1c65f008 100755 --- a/hackerrank/python/py-hello-world.py +++ b/hackerrank/python/py-hello-world.py @@ -1,3 +1,4 @@ #!/usr/bin/env python2 # https://www.hackerrank.com/challenges/py-hello-world -print("Hello, World!") +a = "Hello, World!" +print(a) From 3aad22ef3dd6fe630ff626d1fffda998cda3fd4c Mon Sep 17 00:00:00 2001 From: C3Suryansu Date: Sun, 4 Oct 2020 18:32:04 +0530 Subject: [PATCH 2/2] Rename py-hello-world.py to py-hello-world-using-string-assigning.py --- ...py-hello-world.py => py-hello-world-using-string-assigning.py} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename hackerrank/python/{py-hello-world.py => py-hello-world-using-string-assigning.py} (100%) diff --git a/hackerrank/python/py-hello-world.py b/hackerrank/python/py-hello-world-using-string-assigning.py similarity index 100% rename from hackerrank/python/py-hello-world.py rename to hackerrank/python/py-hello-world-using-string-assigning.py