Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Write Program in Python Please Write a program that prints a table of Celsius temperatures from 0 to 20 degrees and prints the corresponding temperature
Write Program in Python Please
Write a program that prints a table of Celsius temperatures from 0 to 20 degrees and prints the corresponding temperature in Fahrenheit. This program MUST use a loop You MUST use the Python round function on the Fahrenheit value so only integer values appear in the tables Each column must have a label at the top specifying Celsius and Fahrenheit and their must be a line between these column labels and the data that follows The first digit in each temperature must line up with the labels for each temperature so the output forms neat columns Suggestions 1. Write a loop that runs from 0 to 20 and have it print out those values. These are the Celsius values. Run the script and fix any errors. 2. Add a formula to the loop which converts a Celsius temperature into a Fahrenheit temperature Make sure the result is an integer Change the print statement so it prints both temperatures. Run the script and fix any errors. 3. Add a tab or use the format function to the print statement so both temperatures will be aligned in vertical columns. Run the script and fix any errors. 4. Add a print statements before the loop that prints the name of the temperatures and a line of dashes, Run the script and fix any errorsStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started