Answered step by step
Verified Expert Solution
Question
1 Approved Answer
def print _ age _ elagibility ( name _ first _ person, age _ first _ person, name _ second _ person, age _ second
def printageelagibilitynamefirstperson, agefirstperson, namesecondperson, agesecondperson: # 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.
firstperson inputPlease 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 namemain:
# call main here Here is some sample output:
Please enter the name of one person: Craig
Please enter Craig's age:
Please enter the name of another person: Luis
Please enter Luis's age:
BGiven the names and ages of two people, write a Python program to return if one, both, or neither people are between and 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 and
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started