Skip to content

Commit acbe720

Browse files
committed
add 3 new projects
1 parent f6f9497 commit acbe720

File tree

3 files changed

+32
-0
lines changed

3 files changed

+32
-0
lines changed

BMI Calculator/BMI Calculator.py

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
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.")

Echo Chatbot/Echo Chatbot.py

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
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 numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
temp = float(input("Enter temperature in Fahrenheit: "))
2+
3+
celsius = (temp - 32) * 5/9
4+
5+
print(celsius)

0 commit comments

Comments
 (0)