Write a 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)

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

Python program with explainations 

Write a 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
To get full credit you need to
• 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
Transcribed Image Text:Write a 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 To get full credit you need to • 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.
7k 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
>>> |
Tf vou get good and stuck email me VOur code and we'll get it working
Transcribed Image Text: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. 7k 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 >>> | Tf vou get good and stuck email me VOur code and we'll get it working
Expert Solution
Python Code

Computer Science homework question answer, step 1, image 1

Below is the code text so you don't have to type, but make sure to match the text with the image above. It should be like the image in your editor with proper indentation.

temp = float(input("Enter a temperature value to convert: "))
convert = input("Conver to Fahrenheit or Celsius? Enter F or C: ")
if (convert == 'f' or convert == 'F') :
    degF = 1.8 * temp + 32
    print("\n" + str(round(temp, 1)) + " degrees Celsius = " + str(round(degF, 1)) + " degrees Fahrenheit" )
elif (convert == 'c' or convert == 'C') :
    degC = (temp - 32) / 1.8
    print("\n" + str(round(temp, 1)) + " degrees Fahrenheit = " + str(round(degC, 1)) + " degrees Celsius" )
else:
    print("\nYou did not enter an F or C. Goodbye.")

trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
Constants and Variables
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education