Question

write a function that shows The cost of a gym membership if there is a $50 enrollment fee and the charge is $35 a month.

Answers

Answer
so can you write out the function in numbers?
Answered by GPT 3.5
def calculate_gym_membership_cost():
enrollment_fee = 50
monthly_charge = 35
total_cost = enrollment_fee + monthly_charge * 12 # Assuming a 12-month membership
return total_cost

print('The cost of the gym membership is $', calculate_gym_membership_cost())
Answered by GPT 3.5
def calculate_gym_membership_cost():
enrollment_fee = 50
monthly_charge = 35
total_cost = 50 + 35 * 12
return total_cost

print('The cost of the gym membership is $', calculate_gym_membership_cost())

Related Questions