From c18d716c027efc9e887849485a554624cdbde762 Mon Sep 17 00:00:00 2001 From: Sukhj1nder Date: Tue, 3 Oct 2017 15:03:46 +1300 Subject: [PATCH 1/2] hello_word added parameter to exercise placeholder --- exercises/hello-world/hello_world.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/hello-world/hello_world.py b/exercises/hello-world/hello_world.py index b13f0018a2..e0fe305f95 100644 --- a/exercises/hello-world/hello_world.py +++ b/exercises/hello-world/hello_world.py @@ -1,2 +1,2 @@ -def hello(): +def hello(input): pass From 917f5ae80f27c035fa322dca56862aad985cf202 Mon Sep 17 00:00:00 2001 From: Sukhj1nder Date: Thu, 5 Oct 2017 06:37:28 +1300 Subject: [PATCH 2/2] Updated Parameter Name Updated the Parameter name in the `hello_world` function. Hope this is better. --- exercises/hello-world/hello_world.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/hello-world/hello_world.py b/exercises/hello-world/hello_world.py index e0fe305f95..7143f7b9c8 100644 --- a/exercises/hello-world/hello_world.py +++ b/exercises/hello-world/hello_world.py @@ -1,2 +1,2 @@ -def hello(input): +def hello(name=''): pass