Home / Expert Answers / Computer Science / def-print-age-elagibility-name-first-person-age-first-person-name-second-person-age-second-perso-pa599

(Solved): def print_age_elagibility(name_first_person, age_first_person, name_second_person, age_second_perso ...



def print_age_elagibility(name_first_person, age_first_person, name_second_person, age_second_person): # We write function to solve problems in chunks, reuse code and modularize code. '''Write your function Docstring here''' # Function docstring says what it does. output = "" # Initialization # You should write the rest of the code return output # return your result, don't print # We use main program to use, test our solution. Sometimes we call it the client or the driver program. def main(): # collect the input here from the user not from the function. first_person = input("Please enter the name of one person: ") # You should write the rest of the code # print a call to your function above here # Code below simply runs the main(). Don't worry we will soon learn about this syntax. if __name__ == "__main__": # call main() here Here is some sample output: ''' Please enter the name of one person: Craig Please enter Craig's age: 49 Please enter the name of another person: Luis Please enter Luis's age: 58 BGiven the names and ages of two people, write a Python program to return if one, both, or neither people are between 18 and 64 years old (inclusive). You must use a logical "and" or "or", and you must return the words "ONE", "BOTH" and "NEITHER" when appropriate. Use a Boolean variable to simplify your code if you can.oth people are between 18 and 64



We have an Answer from Expert

View Expert Answer

Expert Answer


We have an Answer from Expert

Buy This Answer $5

Place Order

We Provide Services Across The Globe