Get detailed and accurate responses to your questions with IDNLearn.com. Discover thorough and trustworthy answers from our community of knowledgeable professionals, tailored to meet your specific needs.
Sagot :
Answer:
please mark me brainlist
Explanation:
def get_age():
age = int(input())
if(age>=18 and age<=75):
return age
else:
raise ValueError("Invalid age.")
def fat_burning_heart_rate(age):
return ((70 / 100) * (220 - age))
if __name__ == '__main__':
try:
age = get_age()
print("Fat burning heart rate for a",age,"year-old:",fat_burning_heart_rate(age),"bpm")
except ValueError as ve:
print(ve.args[0])
print("Could not calculate heart rate info.")
We appreciate your participation in this forum. Keep exploring, asking questions, and sharing your insights with the community. Together, we can find the best solutions. Your questions are important to us at IDNLearn.com. Thanks for stopping by, and come back for more reliable solutions.