Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

#for_loopy.py b,c=2,-1 for a in np.arange(-1,2,0.3): x1=(-b+np.sqrt(b**2-4*a*c))/(2*a) x2=(-b-np.sqrt(b**2-4*a*c))/(2*a) print(a={:.4f},x1={:.4f},x2={:.4f}.format(a,x1,x2)) Modify the code so that rather than printing the command line, the values are stored in

#for_loopy.py

b,c=2,-1

for a in np.arange(-1,2,0.3):

x1=(-b+np.sqrt(b**2-4*a*c))/(2*a)

x2=(-b-np.sqrt(b**2-4*a*c))/(2*a)

print("a={:.4f},x1={:.4f},x2={:.4f}".format(a,x1,x2))

Modify the code so that rather than printing the command line, the values are stored in an array.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Advances In Databases And Information Systems Uropean Conference Adbis 2020 Lyon France August 25 27 2020 Proceedings Lncs 12245

Authors: Jerome Darmont ,Boris Novikov ,Robert Wrembel

1st Edition

3030548317, 978-3030548315

More Books

Students also viewed these Databases questions