Computer Science, asked by adrijamishra2007, 1 day ago

. Write a python program to input the temperature of a city in Fahrenheit degrees and convert it into Centigrade degrees.

Answers

Answered by cheemtu
3

please mark brainliest. Answer ↓

def temp():

   far = int(input("Temperature in Farenheit: "))

   cent = (far - 32) * 5.0/9.0

   print("Result in Centigrade: ", cent)

   

temp()

Attachments:
Similar questions