There is one deliverable for this assignment
This program must prompt the user for a temperature in Fahrenheit, convert that temperature to Celsius and print the Celsius temperature.
The Celsius temperature must be an integer.
Then the program must print a blank line.
The program must now prompt the user for a temperature in Celsius, convert that number to Fahrenheit and print the Fahrenheit temperature.
The Fahrenheit temperature must be an integer
You will find conversion formulae here and here.
Please enter the temperature in Fahrenheit: 40 You entered 40 degrees Fahrenheit40 degrees Fahrenheit is 4 degrees Celsius Please enter the temperature in Celsius: 4 You entered 4 degrees Celsius4 degrees Celsius is 39 degrees FahrenheitThe text colored blue is user input
cd it116
cd hw
mkdir hw3
ls
cd it116/hw/hw3
python3 ex3.py
Please enter the temperature in Fahrenheit: 40 You entered 40 degrees Fahrenheit40 degrees Fahrenheit is 4 degrees Celsius Please enter the temperature in Celsius: 4 You entered 4 degrees Celsius4 degrees Celsius is 39 degrees FahrenheitThe text colored blue is user input