Create a python program that will implementing try, except and finally in the sample class below. class QuadraticEquation: def __init__(self, a, b, c): self.a = a self.b = b self.c = c def discriminant(self): return ((self.b)**2) - (4 * self.a * self.c) def root1(self): if self.discriminant() < 0: return None else: return (-self.b + (self.discriminant())**0.5) / (2 * self.a) def root2(self): if self.discriminant() < 0: return None else: return (-self.b - (self.discriminant())**0.5) / (2 * self.a) a = float(input("Enter the value of a: ")) b = float(input("Enter the value of b: ")) c = float(input("Enter the value of c: ")) z = QuadraticEquation(a, b, c) print("Root1: ", z.root1()) print("Root2: ", z.root2()) print("Discriminant: ", z.discriminant())

Microsoft Visual C#
7th Edition
ISBN:9781337102100
Author:Joyce, Farrell.
Publisher:Joyce, Farrell.
Chapter10: Introduction To Inheritance
Section: Chapter Questions
Problem 7RQ
icon
Related questions
Question
100%
Create a python program that will implementing try, except and finally in the sample class below. class QuadraticEquation: def __init__(self, a, b, c): self.a = a self.b = b self.c = c def discriminant(self): return ((self.b)**2) - (4 * self.a * self.c) def root1(self): if self.discriminant() < 0: return None else: return (-self.b + (self.discriminant())**0.5) / (2 * self.a) def root2(self): if self.discriminant() < 0: return None else: return (-self.b - (self.discriminant())**0.5) / (2 * self.a) a = float(input("Enter the value of a: ")) b = float(input("Enter the value of b: ")) c = float(input("Enter the value of c: ")) z = QuadraticEquation(a, b, c) print("Root1: ", z.root1()) print("Root2: ", z.root2()) print("Discriminant: ", z.discriminant())
class QuadraticEquation:
def _init_(self, a, b, c):
self.a = a
self.b = b
self.c = c
def discriminant(self):
return ((self.b)**2) - (4 * self.G * self.c)
def root1(self):
if self.discriminant() < 0:
return None
else:
return (-self.b + (self.discriminant())**0.5) / (2 * self.a)
def root2(self):
if self.discriminant() < 0:
return None
else:
return (-self.b - (self.discriminant())**0.5) / (2 * self.a)
a = float(input("Enter the value of a: "))
b = float(input("Enter the value of b: “))
C = float(input("Enter the value of c: "))
z = QuadraticEquation(a, b, c)
print("Rootl:", z.root| ())
print(*Root2: ", 2.root2())
print("Discriminant: ", z.discriminant())
Transcribed Image Text:class QuadraticEquation: def _init_(self, a, b, c): self.a = a self.b = b self.c = c def discriminant(self): return ((self.b)**2) - (4 * self.G * self.c) def root1(self): if self.discriminant() < 0: return None else: return (-self.b + (self.discriminant())**0.5) / (2 * self.a) def root2(self): if self.discriminant() < 0: return None else: return (-self.b - (self.discriminant())**0.5) / (2 * self.a) a = float(input("Enter the value of a: ")) b = float(input("Enter the value of b: “)) C = float(input("Enter the value of c: ")) z = QuadraticEquation(a, b, c) print("Rootl:", z.root| ()) print(*Root2: ", 2.root2()) print("Discriminant: ", z.discriminant())
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 5 images

Blurred answer
Knowledge Booster
Math class and its different methods
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
Microsoft Visual C#
Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT