program7_1.py Follow instructions carefully to avoid point deductions. The text file is not required. It will be created when your program is graded. Write a program that begins by calling a custom function named as you wish. This function must create and return a list of 8 random integers, all in the range from 10-100. use a for loop to display the 8 random integers all on one line separated by a single space. print the highest number in the list. print the lowest number in the list. print the total of all list elements. sort the list in descending order. use another loop to display the sorted numbers in descending order, all on the same line, separated by a single space. This loop should also contain code to count the number of even integers and the number of odd integers. report both counts when the loop above has ended. use slicing syntax to make another list holding the middle 2 elements of the descending list. display both elements in this new list as shown in the sample output. write the list of 8 descending integers to a text file, each integer on its own line.   Sample Output 1 Here is your initial list 22 80 52 97 44 15 66 79 The largest number is 97 The smallest number is 15 The list total is 455 Here is your list sorted descending 97 80 79 66 52 44 22 15 Results: 5 numbers were even and 3 were odd The middle two numbers are 66 and 52 The list was written to a file

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

Hello! I am having trouble writing this code! It is in Python! Any help is appreciated!

 

program7_1.py
Follow instructions carefully to avoid point deductions. The text file is not required. It will be created when your program is graded.

  • Write a program that begins by calling a custom function named as you wish. This function must create and return a list of 8 random integers, all in the range from 10-100.
  • use a for loop to display the 8 random integers all on one line separated by a single space.
  • print the highest number in the list.
  • print the lowest number in the list.
  • print the total of all list elements.
  • sort the list in descending order.
  • use another loop to display the sorted numbers in descending order, all on the same line, separated by a single space. This loop should also contain code to count the number of even integers and the number of odd integers.
  • report both counts when the loop above has ended.
  • use slicing syntax to make another list holding the middle 2 elements of the descending list.
  • display both elements in this new list as shown in the sample output.
  • write the list of 8 descending integers to a text file, each integer on its own line.

 

Sample Output 1
Here is your initial list
22 80 52 97 44 15 66 79
The largest number is 97
The smallest number is 15
The list total is 455
Here is your list sorted descending
97 80 79 66 52 44 22 15
Results: 5 numbers were even and 3 were odd
The middle two numbers are 66 and 52
The list was written to a file

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 2 images

Blurred answer
Knowledge Booster
Types of Loop
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