diff --git a/Johnnys'secret_message_kyu8.py b/Johnnys'secret_message_kyu8.py new file mode 100644 index 0000000..2528e03 --- /dev/null +++ b/Johnnys'secret_message_kyu8.py @@ -0,0 +1,6 @@ +# Return a greeting and if the username is Johnny return something unique for him + +def greet(name): + if name == "Johnny": + return "Hello, my love!" + return "Hello, {name}!".format(name=name) \ No newline at end of file