Thursday, February 7, 2019

Convert Celsius to Fahrenheit - Python3

ip=int(input("Enter the temperature in celcius:"))
f=(ip+32)*(9/5)
print("\ntemperature from celcius to fahrenheit:",f)

ScreenShot:

No comments:

Post a Comment