
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
Concept explainers
Question

Transcribed Image Text:Python
EXERCISE 1. GENERATING AND PLOTTING A FUNCTION
1. Generate a list or ndarray of values from 0 to 4 with a spacing of 0.1
2. Calculate and plot the function x²-x²
635
025
020
015
630
005
0:00
00
la
Expert Solution

This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
Step by stepSolved in 4 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
- In python code: Write a function to convert the Roman Numeral list to Hexidecimal. DCXXXVIIDCCXXXIIICMLXXXIIICDLXXXVIICCDLXXVIIIDCLXCMXVIDCCXXXCDXCIXCDLXXIIIDCCXLIIDCCLVIICCCXXXVICXXXIXCCCXXCCLXXVIIICMXXVIICCCIXDCCXXIXCDXCLXXIVCCXXXICCXXIIDCLXXXCCCLXXVIICDLIXCCXXIICCLVDXCIVDXXXIIICCLXIIIDCCCXDCCLXXIVDCCXXIVDCXXIICDXXCCCLXVDXCCLXXIICLXXXIXDCXXIXCMIDCXCVXXVIICCCLIVDCCXLVICMXLIIDCLXIVDCCCMLXXXIVCMLXIXCDLXXVIIICCLXVCCCLXXCCCLXXIICMXXIICCVIIICLXXVIIXCIXDXXXIICDXXXVDCCCLIXCDXCIIDLVDCCCXLVIICXXXVICDLXIVDVIIICCXCVIIIDCCXIXDCCCXXXVDCCCXICDVIICCCXCIXIDLXXCCLXIXCCCXIIDCCCXXVIIIDCCCIVCCCLXVCLXXXVIIDXVDXCIICMXLIVDCCXVIDLXCDLXXIXDCCCXCIIDCXLVICLXIDXCVIIICLXXDCCLXXVDXCIIDLXXVIarrow_forwardIN PYTHON: Using a function, create a list of 20 numbers randomly between 1-99. With recursive function, you are going to take the numbers from the list, one at a time starting at position 0 and add them together. If the numbers added together equals a user specified sum, stop the program and show the two digits that sum together. If not, remove the first number from the list and add the next two. Continue running the program until you have reached the end of the list. sample output: randomly selected numbers: [61, 6, 78, 3, 64, 22, 11, 9, 34, 99, 31, 56, 43, 8, 77, 27, 93, 47, 58, 20] User input : 86 61 + 6 = 67 FALSE [6, 78, 3, 64, 22, 11, 9, 34, 99, 31, 56, 43, 8, 77, 27, 93, 47, 58, 20] 6 + 78 = 84 FALSE [78, 3, 64, 22, 11, 9, 34, 99, 31, 56, 43, 8, 77, 27, 93, 47, 58, 20] 78 + 3 = 81 FALSE [3, 64, 22, 11, 9, 34, 99, 31, 56, 43, 8, 77, 27, 93, 47, 58, 20] 3 + 64 = 67 FALSE [64, 22, 11, 9, 34, 99, 31, 56, 43, 8, 77, 27, 93, 47, 58, 20] 64 + 22 = 86 TRUE!arrow_forwardCode following instructions using pyhton: 1. Write a function that accepts a list as an argument (assume the list contains integers) and returns the total of the values in the list 2.Draw a flowchart showing the general logic for totaling the values in a list. 3.Assume the names variable references a list of strings. Write code that determines whether 'Ruby' is in the names list. If it is, display the message 'Hello Ruby'. Otherwise, display the message 'No Ruby'.arrow_forward
- Define a python function that is passed a table (2D list of lists) of integers and returns the total of all the integers in the table. def total(T): """" Returns the sum of all the elements in the integer table T"""arrow_forwardpython Write a function which accepts two sequences of numbers from the user, each number separated by a comma and generates a list of common numbers between the two sequences. The resulting list can be in any order Example Output Enter the first sequence: 1,4,2,7,13,27 Enter the second sequence: 7, 13, 2, 25, 39 Common numbers: [7, 13, 2]arrow_forwardIn Python, program a function that multiplies c numbers in a list and returns the product, when c < 2.arrow_forward
- Write a nested if statement that will determine the student's final letter grade. Display the numeric and letter grades for the Final average and final exam. Write the nested code in python. import randomdef main(): # main function definition aGrades=[] # empty list to store Grades for i in range(7): # loop to read 7 inputs print("Input scores ",i+1," : ", end="") # a message to enter grade n=int(input()) # input grade aGrades.append(n) # add grade into list print("Grade list before randomize: ",aGrades) # print list random.shuffle(aGrades) # randomize list numExams=len(aGrades)-1 # compute numExams FinalExam=aGrades[-1] # store final grade TotalPoints=sum(aGrades)-aGrades[-1] # compute TotalPoints TestAverage=TotalPoints/numExams # compute TestAverage FinalAverage=TestAverage*.6 + FinalExam*.4 # compute FinalAverage print("Grade list after randomize is: ",aGrades) # print list print("Test Average =…arrow_forwardPython programming only NEED HELP PLEASEarrow_forwardNeed help with Python. Paste indented code QUESTION 8 Implement the following:1) Define a function oddList() with an arbitrary parameter a.2) This function accepts any number of integer arguments.3) oddList() stores all odd numbers into a list and returns the list.4) Call the function with 1, 2, 3, 4, 5 as arguments.5) Print the result of the function call. Example Output[1, 3, 5]arrow_forward
- python 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_forwardNeed helping writing a python program that takes a user's input and makes it a two-dimensional list and calculates the following:- the lowest number in the list- the highest number in the list- sum of numbers in the list- amount of numbers in the list The format of the output needs to look like the screenshot, the values should change with the different inputs though.arrow_forwardObjective: Write syntactically correct while/for loops Given a list of numbers and a number n, return the sum of the first n elements in the list. Assume n is less than or equal to the length of the list. For example, given [1, 1, 1, 5] and n=3, the function should return 3. (i.e. 1+1+1) user_code.py 1 # starter code 2 def sum_to_n(numbers, n): 3 4 & in 5 # your code here (replace pass with your code) *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