I have python programing question a) Create a list comprehension of multiples of 4 from 0 to 10 inclusive. 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 10 inclusive. 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 1 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)
I have python programing question
a) Create a list comprehension of multiples of 4 from 0 to 10 inclusive. 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 10 inclusive. 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 1 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)
![](/static/compass_v2/shared-icons/check-mark.png)
Trending now
This is a popular solution!
Step by step
Solved in 2 steps with 2 images
![Blurred answer](/static/compass_v2/solution-images/blurred-answer.jpg)
![Database System Concepts](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
![Starting Out with Python (4th Edition)](https://www.bartleby.com/isbn_cover_images/9780134444321/9780134444321_smallCoverImage.gif)
![Digital Fundamentals (11th Edition)](https://www.bartleby.com/isbn_cover_images/9780132737968/9780132737968_smallCoverImage.gif)
![Database System Concepts](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
![Starting Out with Python (4th Edition)](https://www.bartleby.com/isbn_cover_images/9780134444321/9780134444321_smallCoverImage.gif)
![Digital Fundamentals (11th Edition)](https://www.bartleby.com/isbn_cover_images/9780132737968/9780132737968_smallCoverImage.gif)
![C How to Program (8th Edition)](https://www.bartleby.com/isbn_cover_images/9780133976892/9780133976892_smallCoverImage.gif)
![Database Systems: Design, Implementation, & Manag…](https://www.bartleby.com/isbn_cover_images/9781337627900/9781337627900_smallCoverImage.gif)
![Programmable Logic Controllers](https://www.bartleby.com/isbn_cover_images/9780073373843/9780073373843_smallCoverImage.gif)