-
Notifications
You must be signed in to change notification settings - Fork 531
/
Copy path3-challenge-convert-temperatures.py
38 lines (26 loc) · 1.19 KB
/
3-challenge-convert-temperatures.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# 6.3 - Challenge: Convert temperatures
# Solution to challenge
def convert_cel_to_far(temp_cel):
"""Return the Celsius temperature temp_cel converted to Fahrenheit."""
temp_far = temp_cel * (9 / 5) + 32
return temp_far
def convert_far_to_cel(temp_far):
"""Return the Fahrenheit temperature temp_far converted to Celsius."""
temp_cel = (temp_far - 32) * (5 / 9)
return temp_cel
# Prompt the user to input a Fahrenheit temperature.
temp_far = input("Enter a temperature in degrees F: ")
# Convert the temperature to Celsius.
# Note that `temp_far` must be converted to a `float`
# since `input()` returns a string.
temp_cel = convert_far_to_cel(float(temp_far))
# Display the converted temperature
print(f"{temp_far} degrees F = {temp_cel:.2f} degrees C")
# You could also use `round()` instead of the formatting mini-language:
# print(f"{temp_far} degrees F = {round(temp_cel, 2)} degrees C"")
# Prompt the user to input a Celsius temperature.
temp_cel = input("\nEnter a temperature in degrees C: ")
# Convert the temperature to Fahrenheit.
temp_far = convert_cel_to_far(float(temp_cel))
# Display the converted temperature
print(f"{temp_cel} degrees C = {temp_far:.2f} degrees F")