Advertisement
Guest User

Untitled

a guest
Jan 29th, 2020
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.44 KB | None | 0 0
  1. print('Let me help you convert a Farenheit Temperature to Celsius')
  2. first_input = int(input("Give me a Farenheit Temperature "))
  3. print()
  4. print('Here is the answer after you subtract 32 from', first_input)
  5.  
  6. Celsius = int((first_input -32))
  7. print(Celsius)
  8.  
  9. print('here is the answer after you multiply', Celsius, 'by 5/9')
  10.  
  11. Celsius_2 = float((Celsius)*(5/9))
  12. print(Celsius_2)
  13. print('that is the final answer')
  14.  
  15. print('Thank you!')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement