Advertisement
maynul67

Celcius to farenheit converter

Jul 10th, 2021
970
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.09 KB | None | 0 0
  1. temp = float(input("Enter temp in Celsius:"))
  2. far = (temp*9/5) + 32
  3.  
  4. print("result: ",far,"°F")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement