Name Length#
In this code challenge, your task is to define a function get_name_length(first, last)
that takes in a person’s first name (first
) and last name (name
) as input parameters and should return the length of the full name (i.e., first name + last name
).
Sample Input 1:
Winny
Wilson
Sample Output 1:
11
Sample Input 2:
Annie
Wai
Sample Output 2:
8
Sample Input 3:
Adalbert Gerald
Soosai Raj
Sample Output 3:
25