Advertisement
Guest User

443

a guest
Oct 22nd, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. Celsius = float(input("Enter a temperature in Celsius: "))
  2.  
  3. Fahrenheit = (9.0/5.0 * Celsius + 32)
  4.  
  5. print ("",Celsius, "C is equal to ",Fahrenheit, "F")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement