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

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter15: Recursion
Section: Chapter Questions
Problem 20PE
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
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr