Advertisement
Pope_rhemi

Untitled

Jan 28th, 2020
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.18 KB | None | 0 0
  1. #program that converts Fahrenheit to Celsius
  2. temp_in_F =float(input("Please Enter Temperature Value in Fahrenheit: "))
  3. temp_in_C = (temp_in_F - 32)*(5/9)
  4. print(temp_in_C, "Celsius")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement