Code Monkey home page Code Monkey logo

codecademy-python-project's Introduction

Codecademy-Python-Project

Python Functions: Medical Insurance Project

I'm Using Visual Studio Code as my text editor

Sample Question

1. First, take a look at the code in script.py.

In this code, we estimate the medical insurance costs for two individuals, Maria and Omar, based on five variables:

age: age of the individual in years sex: 0 for female, 1 for male bmi: individual’s body mass index num_of_children: number of children the individual has smoker: 0 for a non-smoker, 1 for a smoker These variables are used in the following formula to estimate an individual’s insurance cost (in USD):

insurance_cost = 250 * age - 128 * sex + 370 * bmi + 425 * num_of_children + 24000 * smoker - 12500

2. The code used to estimate insurance costs for Maria and Omar looks quite similar – in both cases we calculate the insurance cost using the same formula and then print the output.

This code is a great candidate for a function because it involves repeating almost identical commands in multiple places.

Let’s start by defining a function called calculate_insurance_cost() on line 2. For now, your function should not have any parameters or output.

3. Let’s outline the behavior we want our function to have. Inside of calculate_insurance_cost(), do the following:

Create a variable called estimated_cost. For now, set this variable equal to a value of 1000. You’ll add the full formula in the next step. Add a print statement that prints estimated_cost. You should output a message similar to: "The estimated insurance cost for this person is xxx dollars." Return estimated_cost

4. Nice job – you’ve created a simple Python function that we’ll use to estimate medical insurance costs.

However, the function currently returns a value of 1000. We want it to return our insurance cost formula instead.

Modify the function definition so that it contains five parameters:

age sex bmi num_of_children smoker Take a look at the hint if you need a reminder on how to add parameters to a function definition.

5. Now that we have set up the function to take inputs for each of the values needed in the insurance formula, we can make use of them inside of our function.

In calculate_insurance_cost(), change the value of estimated_cost from 1000 to our formula for insurance cost.

Remember that the formula for insurance cost is:

250 * age - 128 * sex + 370 * bmi + 425 * num_of_children + 24000 * smoker - 12500

6. The function is now properly set up to calculate an individual’s medical insurance costs based on the five variables passed into it. Let’s test this out!

Go to the section of code that estimates Maria’s insurance cost.

Rename insurance_cost as maria_insurance_cost and set it equal to calculate_insurance_cost() with the appropriate values for Maria as arguments.

7. Now, remove the print statement for Maria since our function will take care of printing the estimated cost for us.

Additionally, remove the five lines of code defining the initial variables for Maria, as we are now passing in these values directly in the function call.

8. Repeat steps 6-7 for Omar:

Rename insurance_cost as omar_insurance_cost and set it equal to the calculate_insurance_cost() function, passing in the appropriate values as arguments. Remove the initial variables and print statement for Omar. Notice how much cleaner our code is now! By utilizing a Python function, we were able to condense many lines of code into just a few.

9. Click “Save” to see the estimated insurance costs for Maria and Omar as calculated by your function.

In the output terminal, notice that it says "The estimated insurance cost for this person is..." but it does not specify the actual name of the person.

To fix this, begin by adding an additional parameter called name to the function definition.

10.Next, modify the print statement in the function so that it includes the new name parameter, replacing "this person" with the actual name of the person.

11. We must also update our function calls, passing in the name variable as an argument.

Update the function call for maria_insurance_cost, passing in name = "Maria" as an argument.

Do the same for Omar, passing in name = "Omar".

Now if you click “Save”, you’ll see that our function is able to write a more personalized message specifying the name of the individual it is estimating insurance costs for. Pretty neat, right?

12. In this example, we calculated the insurance costs for two individuals, but with our new code we can easily extend this to thousands or even millions of individuals.

To illustrate, estimate your own insurance cost.

At the bottom of your code, create a new insurance_cost variable for yourself, similar to how we did it for Maria and Omar.

Set the variable equal to a function call to calculate_insurance_cost(), passing in your own name, age, sex, bmi, number of children, and smoker status.

13. Congratulations! In this project, you created a useful function that calculates medical insurance costs based on the values passed into the function. Great job!

As a data scientist, you should always strive to make your code more clean and modular. Using functions to avoid repetitive code is a great way to do just that.

Now it’s your turn! If you’d like extra practice with Python functions, here are some suggestions to get you started:

Modify the calculate_insurance_cost() function so that it returns two values – the output message and the estimated cost. Create a second function to calculate the difference between the insurance costs (given as inputs) of any two individuals and print a statement saying: "The difference in insurance cost is xxx dollars."

codecademy-python-project's People

Contributors

aazamuddin4 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.