diff --git a/today.py b/today.py index c3574fe..4e06f2f 100644 --- a/today.py +++ b/today.py @@ -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