0
Почему мой код не работает?
Задание с Python for Beginners. https://code.sololearn.com/cDpVhMPy2BjD/?ref=app
1 ответ
+ 3
Height is of float type
Height = float( input())  
And
In Print() use small p, print(..)
elif Imt >= 18.5 and  ? < 25:
    Print("Normal")
Must be like :
elif Imt >= 18.5 and Imt< 25:
    print("Normal")
Same for all others...



