280,529 views
13 votes
13 votes
write a python program that takes in temperature in Celsius from the user,and converts it to temperature in Fahrenheit

User Steamboy
by
3.0k points

1 Answer

17 votes
17 votes

Answer:

#Program from Celsius to Fahrenheit

celsius = float(input("Enter temperature in celsius: "))

fahrenheit = (celsius * 9/5) + 32

print(f'{celsius} Celsius is: {fahrenheit} Fahrenheit')

write a python program that takes in temperature in Celsius from the user,and converts-example-1
User Shruti Thombre
by
2.7k points