Program to Find Discriminant || Arithmetic Operation || Python

In this we are going to see a program to Calculate Discriminant Value in Python Programming Language.


# Values Of a,b,c
x = int(input("Enter The a Value : "))
y = int(input("Enter The b Value : "))
z = int(input("Enter The c Value : "))
# Calculation Formula
discriminant = (y**2)-(4*x*z)
print("Discriminant Value Is : ",discriminant)

# Coded By DHIRAJ SHELKE


#ENJOY CODING


Post a Comment

FOR ANY DOUBTS AND ERRORS FEEL FREE TO ASK. YOUR DOUBTS WILL BE ADDRESSED ASAP

Previous Post Next Post