
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)

Trending nowThis is a popular solution!
Step by stepSolved in 2 steps with 2 images

- Integer num_reading is read from input, representing the number of integers to be read next. Read the remaining integers from input and insert each integer at the front of reading_list at position 0.arrow_forwardPython programing question 2. Write a program that replaces the name of each month with its three-letter abbreviation. Save it as months.py.a) Create a list.months = ['january', 'february', 'march', 'april', 'may', 'june', 'july', 'august', 'september', 'october', 'november','december']b) Use a for loop to update and store each month with its three-letter abbreviation into a new list.c) Print the value of each month in a row separated by a ‘|’ as displayed in the output example.d) Print the new list as displayed in the output example.e) Print the original list as displayed in the output example.arrow_forwardneed help with python.. please paste ur working and indented code here Write one line of code for each of the following: 1) Create a list named fruits with the following items:"apple", "cherry", "pear" 2) Add "orange" at the end of the fruits list. 3) Change the value from "cherry" to "banana", in the fruits list. 4) Use the insert method to add "lemon" as the third item in the fruits list. 5) Use slicing to print the third, fourth, and fifth items in the current fruits list. 6) Use the del function to remove "banana" from the current fruits list. 7) Use negative indexing to print "pear" in the current fruits list.arrow_forward
- Write a section of Python code (not an entire function) to: initialize a list named shapes which has 5 elements to contain blanks (" ") - use the repetition operator write individual assignment statements to set the first three elements of the list to the values Triangle, Square, Rectangle write a single statement to print the contents of the listarrow_forwardFor each of the following write a list comprehension: a. Create a list of the first 10 multiples of 13 (from 13 to 130) b. Create a list of the squares of the first 100 integers, but only with those that are odd.arrow_forwardThe image is all, it is python codingarrow_forward
- I need help on this onearrow_forwardThe next part of the program reads the file one line at a time and adds the scores, as a floating point numbers, to the list scores. scores = [] # empty list of scores for line in infile: line = line.strip() print (scores) # get score #convert to float # add to list of scores In the space below, complete the program fragment so that it prints the list of floating point scores as follows: [98.5, 97.4, 99.1, 97.2]arrow_forwardSimple Python Coding Exercise Code your program according to the following algorithm 1. Prompt the user for a string of words on one line separated by spaces.2. Convert the input string a list of words called input_list. (Hint: use split())3. Create a new empty list called output_list (i.e., output_list=[])4. Scan input_list to find the smallest word. When the smallest word is found, append that word to output_list and remove it from input_list.5. If input_list still has words in it, go to step 4.6. When input_list is empty, convert output_list into a string of words separated by spaces. (Hint: use join())7. Print the string.arrow_forward
- Please answer this ques in python with showing the codearrow_forwardIn pythonarrow_forward***python only*** Write a program that prompts the user for floating-point numbers until the user enters the word 'end' all by itself. The program should store the user-entered numbers in a list.The program will then randomly select half of those numbers and print these numbers (separated by a blank space). Hint: use a random number generator to make the randomselection.arrow_forward
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education





