From 0c109e95934bb1f62486fd537dd016320f618d57 Mon Sep 17 00:00:00 2001 From: dilsahsule Date: Fri, 19 Dec 2025 22:13:26 +0300 Subject: [PATCH 1/3] Implement my_name_is function --- today.py | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/today.py b/today.py index c3574fe..4c32d61 100644 --- a/today.py +++ b/today.py @@ -1,6 +1,4 @@ -''' -This is the module docstring -''' - - -pass # YOUR CODE HERE +""" Git komutları dilsahsule""" +def my_name_is(): + """github kullanıcı adı""" + return "dilsahsule" From 5bcdaaafc4b58b5fc85af0e8feb623f1e2d10d12 Mon Sep 17 00:00:00 2001 From: dilsahsule Date: Fri, 19 Dec 2025 22:17:03 +0300 Subject: [PATCH 2/3] Implement my_buddy_is function --- today.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/today.py b/today.py index 4c32d61..08c6b2e 100644 --- a/today.py +++ b/today.py @@ -2,3 +2,5 @@ def my_name_is(): """github kullanıcı adı""" return "dilsahsule" +def my_buddy_is(): + return "dilsahsule" From 118070db4637e90532138f0cbd0488afb9d38269 Mon Sep 17 00:00:00 2001 From: dilsahsule Date: Fri, 19 Dec 2025 22:20:41 +0300 Subject: [PATCH 3/3] Fix style issues, should get a 'Good Style' now :pray: --- today.py | 1 + 1 file changed, 1 insertion(+) diff --git a/today.py b/today.py index 08c6b2e..a931f8a 100644 --- a/today.py +++ b/today.py @@ -3,4 +3,5 @@ def my_name_is(): """github kullanıcı adı""" return "dilsahsule" def my_buddy_is(): + """github buddy name""" return "dilsahsule"