Question: 1. Lists, comprehensions, loops and slicing. a) Create a list comprehension of multiples of 4 from 0 to 40 inclusive. The elements will be

1. Lists, comprehensions, loops and slicing. a) Create a list comprehension of

1. Lists, comprehensions, loops and slicing. a) Create a list comprehension of multiples of 4 from 0 to 40 inclusive. The elements will be the multiples of 4 from the 0 multiple to the 10th multiple (11 elements). b) Print this list as displayed in the output example. c) Create a second empty list. d) Use a loop to insert all elements from the first list to the second list. Before storing into the new list, divide each copied element by 2. This results in a new list of all multiples of 2 from 0 to 20 inclusive. The elements will be the multiples of 2 from the 0 multiple to the 10th multiple (11 elements). e) Print the second list as displayed in the output example. f) Use slicing to copy the second list to a new third list. g) Use a loop to divide and store each element of the third list by 2. This will result in a list of the numbers 0 to 10 inclusive. h) Print the third list as displayed in the output example. Output Example [0, 4, 8, 12, 16, 20, 24, 28, 32, 36, 40] [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20] [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10]

Step by Step Solution

3.46 Rating (153 Votes )

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

Here is a Python code solution for the problem you provided python Create a list comprehension of mu... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!