Question: Write a Python program that evaluates y = sin(x) + sin(x2) for the 21 values of x in 0.0, 0.5, 1.0, 1.5, ... , 10.0.

Write a Python program that evaluates y = sin(x) + sin(x2) for the 21 values of x in 0.0, 0.5, 1.0, 1.5, ... , 10.0. The program should start by calling main. Then main call computeVals which returns a list containing the values of y. This list is then printed in a table with 7 columns. This printed should b e done in a function named display that is called from main. Use a formatted print utilizing a 7.2f format descriptor. The framework of the program is also included down below. Write a Python program that evaluates y = sin(x) + sin(x2) forthe 21 values of x in 0.0, 0.5, 1.0, 1.5, ... ,

Homework A-1: Write a Python program that evaluates y=sin(x)+sin(x2) for the 21 values of x in 0.0,0.5,1.0,1.5,,10.0. The program should start by calling main. Then main call computeVals which returns a list containing the values of y. This list is then printed in a table with 7 columns. This printed should be done in a function named display that is called from main. Use a formatted print utilizing a 7.2f format descriptor. - Here is what the output looks like. import math def display(lst): pass def computeVals(listx): pass def main(): listx = [.5*x for x in range (0,21)] listy = computeVals(listx) display(listy) main()

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock 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 Databases Questions!