10. (9 points) Show three different ways to create a list of 25 ones without simply typing the 25 ones. 11. (20 points) Create a list (L1) consisting of the integers: 11, 5, 7, 8, 10, and 11. Using List functions and methods do the following: a) Find the sum of the integers in L1 b) Find the Maximum value in L1 c) Update L1 by adding the integer 50 to the end of L1 d) Update L1 by adding the elements in the list [45, 34, 56, 11] e) After steps (c) and (d), find the number of elements in L1 f) Find the index of the value 8 in L1 g) Remove the last element in L1 h) Remove the first element from L1 i) Reverse the elements in the list L1 j) Count the number of occurrences of the integer 11 in L1

Solved
Show answers

Ask an AI advisor a question