partie1_ex14_2.py

Created by cahier-indice-algo-1techno

Created on April 22, 2022

201 Bytes


def Corpulence(masse, taille):
    IMC = masse / taille**2
    return IMC

def Norm(masse, taille):
    IMC = Corpulence(masse, taille)
    rep = (18.5 <= IMC < 25)
    return rep