Answer:
def calculatereality(a,b,c):
if (pow(float(b),2) - 4*float(a)*float(c)) >=0:
print("real solutions")
else:
print("no real solutions")
calculatereality(12,234,12) #This is for output check
Explanation:
The function required is written above. It prints imaginary or real values according to the calculations b^2-4*a*c.