Begin32. Given the temperature \(T\) in degrees Celsius. Determine the value of the same temperature in degrees Fahrenheit. The temperature Celsius \(T_C\) and the Fahrenheit temperature \(T_F\) are related by the following relationship:
\(T_C = (T_F-32) \cdot 5/9\).

Sulition in Python 3:

import random

T_C = random.randrange(-20,40)
#T_C = 0
T_F = T_C*9/5+32
print("Degrees Celsius = ",T_C)
print("Degrees Fahrenheit = ",round(T_F,2))