Warning: foreach() argument must be of type array|object, bool given in /var/www/html/web/app/themes/studypress-core-theme/template-parts/header/mobile-offcanvas.php on line 20

Problem 1

Given the list values = , write code that fills the list with each set of numbers below,  a. 1 2345678910 b. 0 2468101214161820 c. 1 49162536496481100  d. 0000000000  e. 14916974911 f. 0101010101 g. 0123401234

Problem 1

Write a program that initializes a list with ten random integers and then prints four lines of output, containing \- Every clement at an cven index. \- Every even element. \- All elements in reverse order. \- Only the first and last element.

Problem 2

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.

Problem 3

Write a program that adds all numbers from 2 to 10,000 to a list. Then remove the multiples of 2 (but not 2), multiples of 3 (but not 3), and so on, up to the multiples of 100 . Print the remaining values.

Problem 3

Describe three different ways of making a copy of a list that don't involve the list function.

Problem 4

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 clements by one to the right and move the last element into the first position. For example, 1491625 would be transformed into 2514916 . c. Replace all even clements with 0 . 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 clements if the length is even. f. Move all even elements to the front, otherwise preserving the order of the elements. 9\. Return the second-largest element in the list. h. Return true if the list is currently sorted in increasing order. i. Return true if the list contains two adjacent duplicate clements. J. Return true if the list contains duplicate elements (which need not be adjacent).

Problem 5

Write a loop that fills a list values with ten random numbers between 1 and 100 . Write code for two nested loops that fill values with ten different random numbers between 1 and 100 .

Problem 6

Write Python code for a loop that simultancously computes both the maximum and minimum of a list.

Problem 7

Write a function renovekin that removes the minimum value from a list without using the min function or renove method.

Problem 7

What is wrong with cach of the following code segments? a. values =[1,2,3,4,5,6,7,8,9,10] for i in range( 1,11): values[i] =i;i b. values = [] for i in range(len(values)) : values[i] =i+i

Access millions of textbook solutions in one place

  • Access over 3 million high quality textbook solutions
  • Access our popular flashcard, quiz, mock-exam and notes features
  • Access our smart AI features to upgrade your learning
Get Vaia Premium now
Access millions of textbook solutions in one place

Recommended explanations on Computer Science Textbooks