03 WAP to accept a temperature in Fahrenheit and print the changed temperature in Celsius. 131
(hint: c= f-32 /1.8)
7
Answers
Answered by
0
Answer:
Explanation:
temp = int(input('Enter temperature in fahrenhiet: '))
cel_temp = temp - 3.2/1.8
print(cel_temp)
Similar questions