File tree 3 files changed +32
-0
lines changed
Fahrenheit to Celsius Converter
3 files changed +32
-0
lines changed Original file line number Diff line number Diff line change
1
+ height = float (input ("Enter your height in cm: " ))
2
+ weight = float (input ("Enter your weight in kg: " ))
3
+
4
+ BMI = weight / (height / 100 )** 2
5
+
6
+ print (f"You BMI is { BMI } " )
7
+
8
+ if BMI <= 18.4 :
9
+ print ("You are underweight." )
10
+ elif BMI <= 24.9 :
11
+ print ("You are healthy." )
12
+ elif BMI <= 29.9 :
13
+ print ("You are over weight." )
14
+ elif BMI <= 34.9 :
15
+ print ("You are severely over weight." )
16
+ elif BMI <= 39.9 :
17
+ print ("You are obese." )
18
+ else :
19
+ print ("You are severely obese." )
Original file line number Diff line number Diff line change
1
+ print ("Let's talk! Enter 'quit' to exit..." )
2
+
3
+ while True :
4
+ user = input ("You: " )
5
+ print (f"Bot: { user } " )
6
+
7
+ if user == 'quit' :
8
+ break
Original file line number Diff line number Diff line change
1
+ temp = float (input ("Enter temperature in Fahrenheit: " ))
2
+
3
+ celsius = (temp - 32 ) * 5 / 9
4
+
5
+ print (celsius )
You can’t perform that action at this time.
0 commit comments