Please answer asap for thumbs up create a program called quad.py to…

Question Answered step-by-step Please answer asap for thumbs up create a program called quad.py to… Please answer asap for thumbs up create a program called quad.py to compute and display the value of y that satisfies the following equation: a y = b  The input to the program must be a string such as: “a : -0.75, b : 1.5” which specifies that the values of a, and b are -0.75 and 1.5 respectively. The values of a and b can be any non-zero real numbers. Note the format of the input string being a colon separated list of name-value pairs with a colon sign between each name and its corresponding value.  The expected input/output behavior of the program is illustrated below for four example inputs:  Image transcription textEnter input string: a : -0.75, b : 1.5 y = -2.0 Enter input string: a: 2.5 , b: -2 y = -0.8 Enter input string: a: -0.01 , b :-5.5 y = 550.0 Enter input string: a: 2, b:5 y = 2.5… Show more  Computer Science Engineering & Technology Python Programming CITM 200 Share QuestionEmailCopy link Comments (0)