diff --git a/exercises/hello-world/solution.py b/exercises/hello-world/solution.py new file mode 100644 index 0000000000..d0258d6547 --- /dev/null +++ b/exercises/hello-world/solution.py @@ -0,0 +1,2 @@ +def hello(): + return "Hello World!" diff --git a/exercises/two-fer/solution.py b/exercises/two-fer/solution.py new file mode 100644 index 0000000000..6ee18c3471 --- /dev/null +++ b/exercises/two-fer/solution.py @@ -0,0 +1,2 @@ +def two_fer(name = "you"): + return "One for {}, one for me.".format(name)