asked 35.8k views
15 votes
write a python program that takes in temperature in Celsius from the user,and converts it to temperature in Fahrenheit

asked
User Sibish
by
7.7k points

1 Answer

4 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
answered
User ZeRj
by
8.4k points
Welcome to Qamnty — a place to ask, share, and grow together. Join our community and get real answers from real people.

Categories