Answered step by step
Verified Expert Solution
Question
1 Approved Answer
- . P 6 . 1 Write a program that initializes a list with ten random integers and then prints four lines of output, containing
P Write a program that initializes a list with ten random integers and then prints four lines of output, containing
Every element at an even index.
Every even element.
All elements in reverse order.
Only the first and last element.
P Write a program that reads numbers and adds them to a list if they aren't already contained in the list. When the list contains ten numbers, the program displays the contents and quits.
P Write a program that adds all numbers from to to a list. Then remove the multiples of but not multiples of but not and so on up to the multiples of Print the remaining values.
P Write list functions that carry out the following tasks for a list of integers. For each function, provide a test program.
a Swap the first and last elements in the list.
b Shift all elements by one to the right and move the last element into the first position. For example, would be transformed into
c Replace all even elements with
d Replace each element except the first and last by the larger of its two neighbors.
e Remove the middle element if the list length is odd, or the middle two elements if the length is even.
f Move all even elements to the front, otherwise preserving the order of the elements.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started