Question: #### Homework Assignment 2 : Temperature Conversion Tool * * Scenario: * * You are building a weather app that converts a temperature. * *

#### Homework Assignment 2: Temperature Conversion Tool
**Scenario:** You are building a weather app that converts a temperature.
**Task:** Create a tool that:
* Prompts the user to enter a temperatures in Celsius.
* Converts the temperature to Fahrenheit.
* Categorizes the temperature as `Freezing(<32\deg F),Cold(32-59\deg F),Warm(60-79\deg F), or Hot(>80\deg F)`.
* Displays the result.
```
# Example Output
Enter temperatures in Celsius: 0
-0\deg C: 32\deg F, Freezing
# Example Output
Enter temperatures in Celsius: 15
-15\deg C: 59\deg F, Cold
# Example Output
Enter temperatures in Celsius: 25
-25\deg C: 77\deg F, Warm
# Example Output
Enter temperatures in Celsius: 35
-35\deg C: 95\deg F, Hot
In Python

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!