Answer:
def get_first_name( ):
My_name = input('Please What is Your Name')
return My_name
Explanation:
In Python Programming Language, we define the function def get_first_name
The function receives no parameters.
On line two, the function uses the input function to request for a users name and assigns
On line three, it returns the the name entered by the user.