0.3 Question 2 Write a function readValues that reads a number of positive integer values from the user and stops once the user enters 0. All these values will be put in a list a returned by this function. Assume the user enters valid values. Write a function called closest that takes a list of values L and a number n and returns the largest element in L that is not larger than n. For instance, if L- [1,6,3,9,11] and n-8, the values in L less than 8 are: 1,3, and 6. So the closest value to 8 is the largest i.e. 6. If all values in the list are larger than n, the function returns the special value None. Write a main function to call readValues, read the value of n, call closest function and prints the result as shown in the sample runs.
0.3 Question 2 Write a function readValues that reads a number of positive integer values from the user and stops once the user enters 0. All these values will be put in a list a returned by this function. Assume the user enters valid values. Write a function called closest that takes a list of values L and a number n and returns the largest element in L that is not larger than n. For instance, if L- [1,6,3,9,11] and n-8, the values in L less than 8 are: 1,3, and 6. So the closest value to 8 is the largest i.e. 6. If all values in the list are larger than n, the function returns the special value None. Write a main function to call readValues, read the value of n, call closest function and prints the result as shown in the sample runs.
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
Related questions
Question
Alert dont submit
![Edit Metadata
0.3 Question 2
Write a function readValues that reads a number of positive integer values from the user and stops once the user enters 0. All these values will be put in a
list a returned by this function. Assume the user enters valid values.
Write a function called closest that takes a list of values L and a number n and returns the largest element in L that is not larger than n. For instance, if L=
[1,6,3,9,11] and n-8, the values in L less than 8 are: 1,3, and 6. So the closest value to 8 is the largest i.e. 6. If all values in the list are larger than n, the
function returns the special value None.
Write a main function to call readValues, read the value of n, call closest function and prints the result as shown in the sample runs.](/v2/_next/image?url=https%3A%2F%2Fcontent.bartleby.com%2Fqna-images%2Fquestion%2Fe288580e-9930-4c36-8a32-73621674b0af%2F0effaf7b-72cb-4d40-b4d8-5599c211a998%2Fo1hh83_processed.png&w=3840&q=75)
Transcribed Image Text:Edit Metadata
0.3 Question 2
Write a function readValues that reads a number of positive integer values from the user and stops once the user enters 0. All these values will be put in a
list a returned by this function. Assume the user enters valid values.
Write a function called closest that takes a list of values L and a number n and returns the largest element in L that is not larger than n. For instance, if L=
[1,6,3,9,11] and n-8, the values in L less than 8 are: 1,3, and 6. So the closest value to 8 is the largest i.e. 6. If all values in the list are larger than n, the
function returns the special value None.
Write a main function to call readValues, read the value of n, call closest function and prints the result as shown in the sample runs.
Expert Solution

This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
Step by step
Solved in 3 steps with 3 images

Knowledge Booster
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.Recommended textbooks for you

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)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON

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)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON

C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON

Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning

Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education