Advertisement
ydpetkov

celsius_to_fahrenheit

Jul 13th, 2022
23
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.10 KB | None | 0 0
  1. degrees_celsius = float(input())
  2.  
  3. c_to_f = degrees_celsius * 9/5 + 32
  4.  
  5. print(f'{c_to_f:.2f}')
  6.  
  7.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement