Complete the function below by returning the users first name and last name
def GetName():
firstName = lastName = ""
firstName = input("Please enter your first name: ")
lastName = input("Please enter your last name: ")

Q&A Education