Advertisement
Guest User

Untitled

a guest
Jan 29th, 2020
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.13 KB | None | 0 0
  1. fahrenheit = input("Enter a temperature in Fahrenheit: ")
  2. cel = float(fahrenheit)-32
  3. celcius = 5/9*float(cel)
  4. print(celcius, "Celsius")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement