Advertisement
Blessing988

Untitled

Jan 29th, 2020
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.31 KB | None | 0 0
  1. print("Conversion of temperature in Fahrenheit to Celsius")
  2.  
  3.  
  4. #Temperature Conversion
  5. #This program converts a temperature in Fahrenheit to Celsius
  6. #
  7.  
  8. F = float(input("Type in your temperature in Fahrenheit :"))
  9.  
  10. Celsius = (5/9)*(F - 32)
  11.  
  12. print("Your fahrenheit temperature in Celsuis is ", Celsius,"°C")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement