Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- cel = float(input("Enter Celsius temperature: "))
- fer = (cel * 9/5) + 32
- kel = cel + 273.15
- print(f'The Celsius temperature of {cel} is {fer} degrees Fahrenheit')
- print(f'The Celsius temperature of {cel} is {kel} degrees Kelvin')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement