Advertisement
Taka123

Untitled

Jun 27th, 2016
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. def fahrenheit_to_celsius(temp):
  2. cels = (temp-32)*5/9
  3. return fahrenheit_to_celsius(32)
  4. # Deduct 32, then multiply by 5, then divide by 9
  5.  
  6. def celsius_to_fahrenheit(temp):
  7. fahr = (temp * 9/5) + 32
  8. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement