Advertisement
Guest User

Untitled

a guest
Jan 29th, 2020
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.23 KB | None | 0 0
  1. print("Conversion of temperature in farenheit to celsius")
  2. temperature_in_farenheit=float(input("Enter temperature in farenheit "))
  3. a= temperature_in_farenheit - 32
  4. temperature_in_celsius = a * 5 / 9
  5. print(temperature_in_celsius)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement