100 Days of Python Notes
100 Days of Python Notes
Day 1 :
Day 2:
Day 3:
TASK :
x=int(input("Enter any Number from 1 to 99\n"))
if (x%2==0):
print("The Number you entered is even number")
else:
print("The Number you entered is odd number")
----------------------------------------------------------
Task:
Add some if/elif/else statements to the BMI calculator so that it interprets the
BMI values calculated.
If the bmi is between 18.5 (including) and 25 (not including), print out "normal
weight"
SOLUTION :
weight = 100
height = 1.85