diff --git a/hackerrank/python/py-hello-world.py b/hackerrank/python/py-hello-world-using-string-assigning.py similarity index 72% rename from hackerrank/python/py-hello-world.py rename to hackerrank/python/py-hello-world-using-string-assigning.py index 1e2b9ded..1c65f008 100755 --- a/hackerrank/python/py-hello-world.py +++ b/hackerrank/python/py-hello-world-using-string-assigning.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)