Follow these steps: ● Create a Python file called amazon.py in your folder. ● Write code to read the content of the text file input.txt. Tip: After stripping and splitting each line in the file, add the key:value pairs to a dictionary. ● For each line of data compute the answer for the min, max, and avg operations on a list of numbers. The input consists of the following data: ○ min: 1,2,3,4,5,6 ○ max: 1,2,3,4,5,6 ○ avg: 1,2,3,4,5,6 ● You should define the functions min, max, and avg that take in the respective list of integers and return the min, max, or avg of the list. ● Take Note: ○ You can assume that the only operations given in the input file are min, max, and avg, and that the operation is always followed by a list of comma-separated integers. ○ You can assume that the list of input numbers are always valid integers and that the list is never empty, so as not to have to write code to check for these cases. ○ Your program should handle any combination of operations and any length of input numbers. ● Finally, write the values returned from each function to a new line in anew text file output.txt. Your program should output as follows: ○ The min of [1, 2, 3, 4, 5, 6] is 1. ○ The max of [1, 2, 3,4, 5, 6] is 6. ○ The avg of [1, 2, 3, 4, 5, 6] is 3.5. ● Hint: there is something strange about the first line of input.txt.

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

Follow these steps:
● Create a Python file called amazon.py in your folder.
● Write code to read the content of the text file input.txt.
Tip: After stripping and splitting each line in the file, add the key:value
pairs to a dictionary.
● For each line of data compute the answer for the min, max, and avg
operations on a list of numbers.
The input consists of the following data:
○ min: 1,2,3,4,5,6
○ max: 1,2,3,4,5,6
○ avg: 1,2,3,4,5,6
● You should define the functions min, max, and avg that take in the
respective list of integers and return the min, max, or avg of the list.
● Take Note:
○ You can assume that the only operations given in the input file are
min, max, and avg, and that the operation is always followed by a
list of comma-separated integers.
○ You can assume that the list of input numbers are always valid
integers and that the list is never empty, so as not to have to write
code to check for these cases.
○ Your program should handle any combination of operations and
any length of input numbers.
● Finally, write the values returned from each function to a new line in anew text file output.txt.
Your program should output as follows:
○ The min of [1, 2, 3, 4, 5, 6] is 1.
○ The max of [1, 2, 3,4, 5, 6] is 6.
○ The avg of [1, 2, 3, 4, 5, 6] is 3.5.

● Hint: there is something strange about the first line of input.txt.

Expert Solution
steps

Step by step

Solved in 5 steps with 3 images

Blurred answer
Knowledge Booster
File Input and Output Operations
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
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