Begin31. Given the temperature \(T\) in degrees Fahrenheit. Determine the value of the same temperature in degrees Celsius. 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_F = random.randrange(-20,100)
#T_F = 32
T_C = (T_F - 32)*5/9
print("Degrees Fahrenheit = ",T_F)
print("Degrees Celsius = ",round(T_C,2))