top of page
learn_data_science.jpg

Data Scientist Program

 

Free Online Data Science Training for Complete Beginners.
 


No prior coding knowledge required!

Blood sugar monitor

Glucose shows your blood sugar level. It is important to know your blood sugar level to prevent possible complications. There are several levels of blood sugar: hypoglycemia, normal blood sugar, moderate hyperglycemia and Diabetes. We wrote a program that asks the user for their blood sugar level and returns the class to which they belong.


def blood_sugar():
    """
    Blood sugar monitor
    
     Args:
     
     
     Returns:
    str: Health status based on blood sugar
    
    
    """

    blood_s = float(input("Enter your blood sugar : "))
    threshold = 0.7
    if(blood_s<threshold):
        print("Your are in Hypoglycemia")
    elif(threshold<=blood_s and blood_s<=1):
        print("Your blood sugar level is right")
    elif(blood_s>=1 and blood_s<=1.25):
        print("Moderate Hyperglycemia")
    else:
        print("Diabetes")

Illustration

in: blood_sugar()

out: Enter your blood sugar : 1.03
     Moderate Hyperglycemia

in : blood_sugar()

out: Enter your blood sugar : 0.9
     Your blood sugar level is right

0 comments

Recent Posts

See All
bottom of page