
Database System Concepts
7th Edition
ISBN: 9780078022159
Author: Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher: McGraw-Hill Education
expand_more
expand_more
format_list_bulleted
Question
thumb_up100%
Print the two-dimensional list mult_table by row and column. Hint: Use nested loops.
Sample output with input: '1 2 3,2 4 6,3 6 9':
1 | 2 | 3
2 | 4 | 6
3 | 6 | 9
Expert Solution

This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
This is a popular solution
Trending nowThis is a popular solution!
Step by stepSolved in 3 steps with 2 images

Knowledge Booster
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.Similar questions
- please helparrow_forward*Can you produce a flowchart for this code. import randomdef main(): # main function definitionaGrades=[] # empty list to store Gradesfor i in range(7): # loop to read 7 inputsprint("Input scores ",i+1," : ", end="") # a message to enter graden=int(input()) # input gradeaGrades.append(n) # add grade into listprint("Grade list before randomize: ",aGrades) # print list random.shuffle(aGrades) # randomize listnumExams=len(aGrades)-1 # compute numExamsFinalExam=aGrades[-1] # store final gradeTotalPoints=sum(aGrades)-aGrades[-1] # compute TotalPointsTestAverage=TotalPoints/numExams # compute TestAverageFinalAverage=TestAverage*.6 + FinalExam*.4 # compute FinalAverageprint("Grade list after randomize is: ",aGrades) # print listprint("Test Average = %.2f"%TestAverage) # print test averageprint("Final Average = %.2f "%FinalAverage) # print final averagemain() # calling main functionarrow_forwardWhen using a for-loop to modify a list, you always have to make a copy of the list. (a) True (b) False Thank you!arrow_forward
- Given a list input_string_list, generate and print a new list that has the even numbers on the left and the odd numbers on the right. You should keep the ordering of the even and odd numbers the same as in the original list. Hint: Use the .split() function to read in the list and convert each element of the list to an integer using either a for loop or a list comprehension Sample Input 1 1,4,3,2,5,6,7 Sample Output 1 [4, 2, 6, 1, 3, 5, 7] Sample Input 2 98,97,100,101,102 Sample Output 2 [98, 100, 102, 97, 101]arrow_forwardGenerate a random list of 150 integers. Calculate the Standard Deviation of the List. Ask the user for an integer and determine if its exceptional or not.arrow_forwardI have given you the linear search code example on the video and I want you to go through the code and adjust the code. In the following code, list consists of number 4 twice however when you execute this code you find only the first 4. Please adjust your code to find both 4’s on the list def linear_search(list1,key): for i in range(len(list1)): if key==list1[i]: print("Element is found at index", i) break else: print("The element is not found") list1=[4,5,10,4,9,21] key=int(input("Enter a key number: ")) linear_search(list1,key)arrow_forward
- odd_list = print(f"odd_list output: {odd_list}") todo_check([ (odd_list==[1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49], 'odd_list does not contain all odd numbers between 1 and 49') ])arrow_forwardPlease answer the ques in python with showing the answer ( THERE is only 1 ques in 2 steps) Step 1: Given this list of instruments: 'guitar', 'piano', 'violin' Write python program including a for loop to match the output below Output: I love to play the guitar! I love to play the piano! I love to play the violin! Music rocks! Step 2: Use a list comprehension with the range() function to create list of the multiples of 5 from 1 to 10 inclusive. Use a loop to print the numbers in your list horizontally separated by spaces. On a separate line compute and print the sum of those numbers Output: 5 10 15 20 25 30 35 40 45 50 275arrow_forwardpython LAB: Subtracting list elements from max When analyzing data sets, such as data for human heights or for human weights, a common step is to adjust the data. This can be done by normalizing to values between 0 and 1, or throwing away outliers. Write a program that adjusts a list of values by subtracting each value from the maximum value in the list. The input begins with an integer indicating the number of integers that follow.arrow_forward
- Write a program that uses 2 lists. Call the lists Items and Basket respectively. The first list will contain a list of at least 10 items (make up your own items) to select from. The second list will be used to add the selected items in the new list.(Basket) Your program should do the following in a Loop until the user exits the loop: Display the list (print out 1, 2, 3, 4, etc. before each item in the list (Hint: Use Index + 1) Prompt the user to select an item from the Items list. Add the selected item to the new list (Basket) (HINT: Use number entered - 1 for the Index) When the user selects 0, exit the loop and print out the new list of items (Basket) Use Microsoft Word to create your Outline and Logic sections. You can copy and paste your Python code at the end under the heading "Code:" Upload your work into the assignment when completedarrow_forwardGiven a string with duplicate characters in it. Write a program to generate a list that only contains the duplicate characters. In other words, your new list should contain the characters which appear more than once. Suggested Approach Used two nested for loops. The first for loop iterates from 0 to range(len(input_str)). The second for loop iterates from first_loop_index + 1 to range(len(input_str)). The reason you want to start at first_loop_index + 1 in the nested inner loop is that the outer loop already checks the current character. In the nested inner loop, you want to check the remaining characters in the input string. If the current character of the outer loop matches the character of the nested loop AND the character is not already IN the duplicate list, append it to the list nhantran Sample Output 1 List of duplicate chars: ['n', 'a'] Sample Input 2 pneumonoultramicroscopicsilicovolcanoconiosis Sample Output 2 List of duplicate chars: ['p', 'n', 'u', 'm', 'o', 'l', 'r', 'a',…arrow_forwardInteger 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_forward
arrow_back_ios
SEE MORE QUESTIONS
arrow_forward_ios
Recommended textbooks for you
- 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

Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education

Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON

C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON

Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning

Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education