Take input for celcius temperature and convert it into Fahrenheit temperature and display it as output.


F = (1.8

By Mia

Take input for celcius temperature and convert it into Fahrenheit temperature and display it as output.

F = (1.8 × C) + 32.

Take input for Fahrenheit temperature and convert it into celcius temperature and display it as output.

C = (F – 32) / 1.8
In Python app

About the author
Mia

1 thought on “Take input for celcius temperature and convert it into Fahrenheit temperature and display it as output.<br /><br /><br />F = (1.8”

  1. Answer:

    Fahrenheit_to_Celcius.py

    f = int(input(“Enter Fahrenheit – “))

    print(f,”f =”,(f-32)/1.8,”C”)

    Celsius_to_Fahrenheit.py

    c = int(input(“Enter Celsius – “))

    print(f,”C =”,(1.8 * c) +32 ,”F”)

    Request – please mark me as brainlist because I need it to go next level

    Regards,

    Rishav

    Reply

Leave a Reply to Hailey Cancel reply