please help on this python code. Fill in the #lines and what is asking. Write a new code please.

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter6: Modularity Using Functions
Section6.4: A Case Study: Rectangular To Polar Coordinate Conversion
Problem 9E: (Numerical) Write a program that tests the effectiveness of the rand() library function. Start by...
icon
Related questions
Question
100%

please help on this python code. Fill in the #lines and what is asking. Write a new code please.

Implement the quadratic_formula) function. The function takes 3 arguments, a, b, and c, and computes the two results of the quadratic
formula:
-b+ v - 4ac
2a
-4ac
2a
The quadratic.formula() function returns the tuple (x1, x2). Ex: When a - 1, b-5, and c- 6, quadratic.formula) retums (3, 2).
Code provided in main.py reads a single input line containing values for a, b, and c, separated by spaces. Each input is converted to a float
and passed to the quadratic.formula) function.
Ex: If the input is
2 -3 -77
the output is:
Solutions to 2x*2 + -3x -77- 0
xl - 7
x2 - -5.50
# TODO: Import math module
def quadratic_formula (a, b, c):
def print_number (number, prefix_str):
if float (int (number)) == number:
print (f'(prefix_str) {number:.0f}')
else:
print (f'{prefix_str) {number:.2f}')
if
name
main
":
input_line = input ()
split line = input_line.split (" ")
a - float (split_line [0])
b - float (split_line (1])
c = float (split_line[2])
solution = quadratic_formula (a, b, c)
print (f'Solutions to {a:.0f}x^2 + (b:.0f}x + {c:.0f} = 0')
print_number (solution [0), 'xl - ')
print_number (solution [1], 'x2 - ')
Transcribed Image Text:Implement the quadratic_formula) function. The function takes 3 arguments, a, b, and c, and computes the two results of the quadratic formula: -b+ v - 4ac 2a -4ac 2a The quadratic.formula() function returns the tuple (x1, x2). Ex: When a - 1, b-5, and c- 6, quadratic.formula) retums (3, 2). Code provided in main.py reads a single input line containing values for a, b, and c, separated by spaces. Each input is converted to a float and passed to the quadratic.formula) function. Ex: If the input is 2 -3 -77 the output is: Solutions to 2x*2 + -3x -77- 0 xl - 7 x2 - -5.50 # TODO: Import math module def quadratic_formula (a, b, c): def print_number (number, prefix_str): if float (int (number)) == number: print (f'(prefix_str) {number:.0f}') else: print (f'{prefix_str) {number:.2f}') if name main ": input_line = input () split line = input_line.split (" ") a - float (split_line [0]) b - float (split_line (1]) c = float (split_line[2]) solution = quadratic_formula (a, b, c) print (f'Solutions to {a:.0f}x^2 + (b:.0f}x + {c:.0f} = 0') print_number (solution [0), 'xl - ') print_number (solution [1], 'x2 - ')
Expert Solution
steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Concept of Parenthesis
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
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning