Question: Using Python please answer question 6.4 (A,B,C,D,E) Write a program that adds all numbers from 2 to 10,000 to a list. The remove the multiples
Using Python please answer question 6.4 (A,B,C,D,E)

Write a program that adds all numbers from 2 to 10,000 to a list. The remove the multiples of 2(but not 2), multiples of 3(but not 3), and so on, up to the multiple of 100. Print the remaining values. Write list functions that carry out the following tasks for a list of integers. For each function, provide a test program Swap the first and last element in the list. Shift all elements by one to the right and move the last element into the first position. For example, 149 16 25 would be transformed into 25 1 4 9 16. Replace ail even elements with 0. Replace each element except the first and last by the larger of its two neighbors. Remove the middle element if the list length is odd, or the middle two elements if the length is even. Move all even elements to the front, otherwise preserving the order of the elements. Return the second-largest element in the list. Return true if the list is currently sorted in increasing order. Return true if the list contains two adjacent duplicate elements. Return true if the list contains duplicate elements (which need not be adjacent) Modify the largest.py program in Section 6.3 to mark both the smallest and the largest elements. Write a function sum without Smallest that computes the sum of a list of values, except for the smallest one, in a single loop. In the loop, update the sum and the smallest value. After the loop, return the difference. Write a function removeMin that removes the minimum value from a list without using the min function or remove method. P6.8 Compute the alternating sum of ail elements in a list. For example, if your program reads the input
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
