Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions today.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
'''
This is the module docstring
This module contains simple functions to return names and buddies.
'''
def my_name_is(name="Aybüke",surname="Altuntaş"):
"""Return the full name by combining name and surname."""

return name + " " +surname

pass # YOUR CODE HERE


def my_buddy_is(name="Azra",surname="Altuntaş"):
"""Return the buddy information by combining name and surname."""

return name + " " +surname