#in this file we will store function that #accepts 2 parameters - first and last name #and returns the full name def full(first, last): full_name = first + " " + last return full_name