Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- def ctof(c):
- return (c * 9/5) + 32
- c = int(input("Enter temperature in celcius"))
- print(f"{c}°C is {ctof(c)}°F")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement