From 5c9aa3de1d9018bdeb7a6bf01b302ea6de87c400 Mon Sep 17 00:00:00 2001 From: gcemozdogan Date: Thu, 12 Feb 2026 08:52:25 +0300 Subject: [PATCH 1/2] Implement my_name_is function --- today.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/today.py b/today.py index c3574fe..4e35d5b 100644 --- a/today.py +++ b/today.py @@ -1,6 +1,7 @@ -''' -This is the module docstring -''' +"""A module computing buddy pair names for the day""" -pass # YOUR CODE HERE +def my_name_is(): + """Return my GitHub username.""" + return "gcemozdogan" + From 7496345f46608c0598d8fea42b562c80006a3ef4 Mon Sep 17 00:00:00 2001 From: gcemozdogan Date: Thu, 12 Feb 2026 08:54:59 +0300 Subject: [PATCH 2/2] Implement my_buddy_is function --- today.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/today.py b/today.py index 4e35d5b..4e84a53 100644 --- a/today.py +++ b/today.py @@ -5,3 +5,7 @@ def my_name_is(): """Return my GitHub username.""" return "gcemozdogan" + +def my_buddy_is(): + """Return my buddy's GitHub username.""" + return "gcemozdogan"