This question is about Block 2 Section 2.1.3 (Filter). A fridge should keep food at a temperature between 0 and 5 degrees Celsius (inclusive). Assume you have a non-empty list of integer and/or floating-point numbers representing the hourly temperature readings, also in degrees Celsius. Print the list of all temperatures that are outside the allowed range. The answer box contains Pattern 2.3 (List filtering) as comments, to get you started. Write the corresponding code beneath each comment. Use variable names appropriate to the problem at hand instead of the generic names used by the pattern. The first step has been done for you. It uses an operation we defined for you, get_input(), to obtain the list used by each test. The list from get_input() is assigned to temperatures (which corresponds with the input_list in the pattern). You do not have to understand or work out how get_input () works. For example: Input Result [4.7] [] [5.2] [5.2] [0, 3, 5, 7, 5, 4, 2, 0, -0.2] [7, -0.2] Answer: (penalty regime: 0 %) Reset answer 1 # initialise the input_list with the given values 2 temperatures = get_input() # initialise the output_list to the empty list 4# for each input_value of the input_list: # if the input_value satisfies the condition: # append the input_value to the output_list # print the output_list 234567

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
This question is about Block 2 Section 2.1.3 (Filter).
A fridge should keep food at a temperature between 0 and 5 degrees Celsius (inclusive). Assume you
have a non-empty list of integer and/or floating-point numbers representing the hourly temperature
readings, also in degrees Celsius. Print the list of all temperatures that are outside the allowed range.
The answer box contains Pattern 2.3 (List filtering) as comments, to get you started. Write the
corresponding code beneath each comment. Use variable names appropriate to the problem at hand
instead of the generic names used by the pattern. The first step has been done for you. It uses an
operation we defined for you, get_input (), to obtain the list used by each test.
The list from get_input() is assigned to temperatures (which corresponds with the input_list in the
pattern).
You do not have to understand or work out how get_input() works.
For example:
Input
[4.7]
[]
[5.2]
[5.2]
[0, 3, 5, 7, 5, 4, 2, 0, -0.2] [7, -0.2]
Answer: (penalty regime: 0 %)
Reset answer
1
#initialise the input_list with the given values
get_input()
2 temperatures
# initialise the output_list to the empty list
4# for each input_value of the input_list:
5,
# if the input_value satisfies the condition:
# append the input_value to the output_list
2355 NI
Result
6
=
7 # print the output_list
Transcribed Image Text:This question is about Block 2 Section 2.1.3 (Filter). A fridge should keep food at a temperature between 0 and 5 degrees Celsius (inclusive). Assume you have a non-empty list of integer and/or floating-point numbers representing the hourly temperature readings, also in degrees Celsius. Print the list of all temperatures that are outside the allowed range. The answer box contains Pattern 2.3 (List filtering) as comments, to get you started. Write the corresponding code beneath each comment. Use variable names appropriate to the problem at hand instead of the generic names used by the pattern. The first step has been done for you. It uses an operation we defined for you, get_input (), to obtain the list used by each test. The list from get_input() is assigned to temperatures (which corresponds with the input_list in the pattern). You do not have to understand or work out how get_input() works. For example: Input [4.7] [] [5.2] [5.2] [0, 3, 5, 7, 5, 4, 2, 0, -0.2] [7, -0.2] Answer: (penalty regime: 0 %) Reset answer 1 #initialise the input_list with the given values get_input() 2 temperatures # initialise the output_list to the empty list 4# for each input_value of the input_list: 5, # if the input_value satisfies the condition: # append the input_value to the output_list 2355 NI Result 6 = 7 # print the output_list
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 4 images

Blurred answer
Knowledge Booster
Arrays
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