# Do you know what is the normal temperature for human beings?
# What happens when you get fever?[Wait for the answer]
# Do you know the instrument used to check the temperature of your body?
# Do you know what is the unit to measuring temperature?
# You will write a program that converts the temperature from Fahrenheit to Celsius. Are you ready?
'''******Task 1: Fahrenheit to Celsius*****'''
print(" ")
print("*** Task 1:***")
# When you have fever have you heard the doctor say, your temperature is 100 degrees
# Here the doctor is referring to the temperature measured in Farenheit.
# But we can also measure temperature in celsius.
# To convert the temperature from fahrenheit(°F) to celsius(°C), the formula used is:
# Temperature(°C) = (Temperature in°F) - 32) × 5/9
# Write a python program to convert temperature from fahrenheit to celsius. The program must:
# Take the temperature input from the user and store it in a variable.
# Remember to mention that the temperature input required should be in fahrenheit.
# Convert the temperature using the formula given above.
# Now display the result [Hint: Use print statement]
f = int(input("Enter the temperature in fahrenheit: "))
c = (f-32) * 5/9
print(f"The temperature is {c}")
'''******Task 2: Celsius to Fahrenheit*****'''
print(" ")
print("*** Task 2:***")
# Ready for a small challenge
# Write a program to convert temperature in Celsius to Fahrenheit
# Here is a hint:. Use the following formula.
# Temperature in°F=(Temperature(°C)*9/5)+32
c = int(input("Enter the temperature in celsius: "))
f = c * 9/5 + 32
print(f"The temperature is {f}")
'''Excellent! I am so proud of you. Ready for another challenge?'''
To embed this project on your website, copy the following code and paste it into your website's HTML: