The following table lists the freezing and boiling points of several substances. Substance Freezing Pt. (Fo) Boiling Pt (Fo) Ethyl Alcohol -173 172 Mercury -38 676 Oxygen -362 -306 Water 32 212 Write a Python program that will prompt the user to enter an input temperature in Fahrenheit degrees and then will indicate which substances will freeze and which substances will boil when given an input temperature. Show all the substances that will freeze at the temperature that was input and all the substances that will boil at the temperature that was input. Examples Given: Freezing and Boiling Points Enter a temperature: -20 Freezing: Water Boiling: Oxygen End of results Another example: Freezing and Boiling Points Enter a temperature: 250 Freezing: No substances Boiling: Ethyl Alcohol Water End of results
The following table lists the freezing and boiling points of several substances.
Substance | Freezing Pt. (Fo) | Boiling Pt (Fo) |
Ethyl Alcohol | -173 | 172 |
Mercury | -38 | 676 |
Oxygen | -362 | -306 |
Water | 32 | 212 |
Write a Python program that will prompt the user to enter an input temperature in Fahrenheit degrees and then will indicate which substances will freeze and which substances will boil when given an input temperature. Show all the substances that will freeze at the temperature that was input and all the substances that will boil at the temperature that was input.
Examples Given:
Freezing and Boiling Points Enter a temperature: -20 Freezing: Water Boiling: Oxygen
End of results |
Another example:
Freezing and Boiling Points Enter a temperature: 250 Freezing: No substances Boiling: Ethyl Alcohol
End of results |
Trending now
This is a popular solution!
Step by step
Solved in 2 steps with 1 images