Advertisement
Guest User

Untitled

a guest
Feb 29th, 2020
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. Celsius = int(input("Enter a temperature in celsius: "))
  2.  
  3. Fahrenheit = 9.0/5.0 * Celsius + 32;
  4.  
  5. print ("Temperature: ", Celsius, "Celsius = ", Fahrenheit, "F");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement