Celsius - Fahrenheit conversion

# Celsius - Fahrenheit conversion

# F = (C × 9/5) + 32
# C = (F − 32) x 5/9

C = float(input("Enter temperature in Celcius : "))

F = (C * 9/5) + 32

print("Temperature in Fahrenheit = ", F)

No comments:

Post a Comment

Don't be a silent reader...
Leave your comments...

Anu