Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Hello! Could anyone help me write this out in python? Greatly appreciated! Write a program that does the following: Create four variables that store the
Hello! Could anyone help me write this out in python? Greatly appreciated!
Write a program that does the following: Create four variables that store the following pieces of data. Be sure to name your variables in a way that makes sense to someone else (i.e. don't name your variables something simple that doesn't relate to the data that is being stored (like 'x' or 'y')). o Temperature in New York City on Monday (store the number: 35) o Temperature in New York City on Tuesday (store the number: 44) o Temperature in New York City on Wednesday (store the number: 42) o Temperature in New York City on Thursday (store the number 29) Using the print function and your variables, generate the following output. Note the formatting in the output below - make your program match the formatting exactly (same # of spaces, line breaks, etc) Temperature on Monday: 35 degrees Temperature on Tuesday: 44 degrees Temperature on Wednesday: 42 degrees Temperature on Thursday: 29 degrees Average temperature in New York City over these four days: 37.5 degrees FahrenheitStep 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