diff --git a/Returning_strings_kyu8.py b/Returning_strings_kyu8.py new file mode 100644 index 0000000..2881806 --- /dev/null +++ b/Returning_strings_kyu8.py @@ -0,0 +1,4 @@ +# return a greeting using the given name + +def greet(name): + return "Hello, {} how are you doing today?".format(name) \ No newline at end of file