Question: This is python. Please help me. Define a function named 'LDL_category' which will be called with one argument. You can assume that it will be

This is python. Please help me.
Define a function named 'LDL_category' which will be called with one argument. You can assume that it will be called only with an int value representing an LDL cholesterol level, and that it computes the corresponding category label, according to the chart below: LDL level LDL category Level is less than 100 Optimal Level is greater than or equal to 100 but less than 130 Near optimal Level is greater than or equal to 130 but less than 160 Borderline high Level is greater than or equal to 160 but less than 190 High Very high Level is greater than or equal to 190 You may assume that the function will not be called with negative values. Examples: LDL category(125) must return "Near optimal" LDL-category(130) must return "Borderline high
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
