Complete the program below so that it prompts the user for a temperature value, followed by a character that represents the type of temperature: C for Celsius F for Farhenheit If the character represents Fahrenheit temperature (F), convert the temperature value to the equivalent value in Celsius, using the following formula:C = (5/9)(F - 32.0)where C represents the Celsius temperature value, and F represents the Farhenheit temperature value. If the character represents Celsius temperature (C), convert the temperature value to the equivalent value in Farhenheit, using the following formula: F = (9/5)C + 32.0
Max Function
Statistical function is of many categories. One of them is a MAX function. The MAX function returns the largest value from the list of arguments passed to it. MAX function always ignores the empty cells when performing the calculation.
Power Function
A power function is a type of single-term function. Its definition states that it is a variable containing a base value raised to a constant value acting as an exponent. This variable may also have a coefficient. For instance, the area of a circle can be given as:
Complete the program below so that it prompts the user for a temperature value, followed by a character that represents the type of temperature:
- C for Celsius
- F for Farhenheit
If the character represents Fahrenheit temperature (F), convert the temperature value to the equivalent value in Celsius, using the following formula:C = (5/9)(F - 32.0)where C represents the Celsius temperature value, and F represents the Farhenheit temperature value.
If the character represents Celsius temperature (C), convert the temperature value to the equivalent value in Farhenheit, using the following formula:
F = (9/5)C + 32.0
Python Code:
temp = input("Input the temperature : ")
degree = int(temp[:-1])
i_convention = temp[-1]
if i_convention.upper() == "C":
result = int(round((9 * degree) / 5 + 32))
o_convention = "Fahrenheit"
elif i_convention.upper() == "F":
result = int(round((degree - 32) * 5 / 9))
o_convention = "Celsius"
else:
print("Input proper convention.")
quit()
print("The temperature in", o_convention, "is", result, "degrees.")
Trending now
This is a popular solution!
Step by step
Solved in 2 steps with 1 images