Advertisement
Guest User

Untitled

a guest
Jan 29th, 2020
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.43 KB | None | 0 0
  1. print('Let me help you convert a Farenheit temprature to degree celsius')
  2.  
  3. first_input= float(input("Input the Farenheit Temperature---  "))
  4.  
  5. first_step= float((first_input- 32))
  6. print('First off, subtract 32 from', first_input, 'to give you', first_step)
  7.  
  8. second_step= float((first_step)*(5/9))
  9.  
  10. print('Then, multiply the answer by 5/9 to give', second_step)
  11. print('The answer is', second_step)
  12. print('Thanks for using me!')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement