Write a Python program that prompts the user to enter a numeric temperature value that may be a float. A second prompt should then ask the user to indicate whether the user wants the entered temperature value converted to degrees Celsius or degrees Fahrenheit by entering either an 'F' or a 'C' for a second prompt. For example, if the user enters 212 at the first prompt and the character C for the second prompt you are to convert 212 degrees F to the Celsius equivalent (which would be 100.0). Converted temperatures should be rounded to 1 decimal place. If the user enters 26 at the first prompt and the character F at the second one, then your programs should convert 26 degrees C to the Fahrenheit equivalent (which is 78.8 deg F) Your conversion formulas are:
Operations
In mathematics and computer science, an operation is an event that is carried out to satisfy a given task. Basic operations of a computer system are input, processing, output, storage, and control.
Basic Operators
An operator is a symbol that indicates an operation to be performed. We are familiar with operators in mathematics; operators used in computer programming are—in many ways—similar to mathematical operators.
Division Operator
We all learnt about division—and the division operator—in school. You probably know of both these symbols as representing division:
Modulus Operator
Modulus can be represented either as (mod or modulo) in computing operation. Modulus comes under arithmetic operations. Any number or variable which produces absolute value is modulus functionality. Magnitude of any function is totally changed by modulo operator as it changes even negative value to positive.
Operators
In the realm of programming, operators refer to the symbols that perform some function. They are tasked with instructing the compiler on the type of action that needs to be performed on the values passed as operands. Operators can be used in mathematical formulas and equations. In programming languages like Python, C, and Java, a variety of operators are defined.
Write a Python program that prompts the user to enter a numeric temperature value that may be a float. A second prompt should then ask the user to indicate whether the user wants the entered temperature value converted to degrees Celsius or degrees Fahrenheit by entering either an 'F' or a 'C' for a second prompt.
For example, if the user enters 212 at the first prompt and the character C for the second prompt you are to convert 212 degrees F to the Celsius equivalent (which would be 100.0). Converted temperatures should be rounded to 1 decimal place.
If the user enters 26 at the first prompt and the character F at the second one, then your programs should convert 26 degrees C to the Fahrenheit equivalent (which is 78.8 deg F)
Your conversion formulas are:
degF = 1.8 * degC + 32 //convert Celsius to Fahrenheit
degC = (degF - 32) / 1.8 //convert Fahrenheit to Celsius
- Have your converted values be floats rounded to 1 decimal place.
- The F or C entry should be case-insensitive. The user should be able to enter F or f for a Fahrenheit conversion, or a C or c for a Celsius conversion. But if the user doesn't enter an F, f, C or c, then display an error message and exit the program rather than performing the calculation
- Use the decision structure of your choosing to determine whether to convert the input value to degF or degC or to exit.
- Your output should contain both the original temperature entered and the proper output temperature, labeled as to which is which. Something like this: 212 degrees F = 100.0 degrees C
![Your prompt strings might look something like this, although you can choose your own words.
Please enter a temperature value to convert:
Convert to Fahrenheit or Celsius? Enter either F or C:
A possible example program run might look like this, where 50 deg C is converted to 122.0 deg F. Your output should indicated
which number is in which temperature system, like the following.
76 Python Shell
File Edit
Shell Debug Options Windows Help
Python 3.3.0 (v3.3.0:bd8afb90ebf2, Sep 29 2012, 10:55:4
8) [MSC v.1600 32 bit (Intel)] on win32
Type "copyright", "credits" or "license ()" for more inf
ormation.
>>>
RESTART
>>>
Enter a temperature value to convert: 50
Convert to Fahrenheit or Celsius? Enter F or C: f
50.0 deg C = 122.0 degrees F
>>> |
And, what if the user does not enter an F, f, C, or c? Suppose they type in k or simply hit enter without typing any character at
all?. Then your output should look similar to the following. You do not have to account for all possible user input errors, and for
this program you can assume the user will not enter a number that is lower than absolute zero.
76 Python Shell
File Edit Shell Debug Options Windows Help
Python 3.3.0 (v3.3.0:bd8afb90ebf2, Sep 29 2012, 10:55:4
8) [MSC v.1600 32 bit (Intel)] on win32
Type "copyright", "credits" or "license () " for more inf
ormation.
>>>
RESTART
==
>>>
Enter a temperature value to convert: 45.2
Convert to Fahrenheit or Celsius? Enter F or C: m
You did not enter an F or C.
Goodbye
>>> |
If you get good and stuck email me your code and we'Il get it working.](/v2/_next/image?url=https%3A%2F%2Fcontent.bartleby.com%2Fqna-images%2Fquestion%2Fb12e7222-506e-487d-a20e-061b70f8136b%2Fe894b3aa-bc07-46f6-a3c4-d722f3fc4883%2Fwhpvxq_processed.png&w=3840&q=75)
![](/static/compass_v2/shared-icons/check-mark.png)
Trending now
This is a popular solution!
Step by step
Solved in 4 steps with 3 images
![Blurred answer](/static/compass_v2/solution-images/blurred-answer.jpg)
The code works, execpt:
Have your converted values be floats rounded to 1 decimal place.
How do you make it round to 1 decimal place?
![Database System Concepts](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
![Starting Out with Python (4th Edition)](https://www.bartleby.com/isbn_cover_images/9780134444321/9780134444321_smallCoverImage.gif)
![Digital Fundamentals (11th Edition)](https://www.bartleby.com/isbn_cover_images/9780132737968/9780132737968_smallCoverImage.gif)
![Database System Concepts](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
![Starting Out with Python (4th Edition)](https://www.bartleby.com/isbn_cover_images/9780134444321/9780134444321_smallCoverImage.gif)
![Digital Fundamentals (11th Edition)](https://www.bartleby.com/isbn_cover_images/9780132737968/9780132737968_smallCoverImage.gif)
![C How to Program (8th Edition)](https://www.bartleby.com/isbn_cover_images/9780133976892/9780133976892_smallCoverImage.gif)
![Database Systems: Design, Implementation, & Manag…](https://www.bartleby.com/isbn_cover_images/9781337627900/9781337627900_smallCoverImage.gif)
![Programmable Logic Controllers](https://www.bartleby.com/isbn_cover_images/9780073373843/9780073373843_smallCoverImage.gif)