0

Python error

how bout this one it also resulted to float erorr import math x = float(input("Kindly enter the data for x:")) y = float(input("Kindly enter the data for y:")) z = float(input("Kindly enter the data for z:")) b = (-y - math.sqrt (abs((pow(y,2)) - 4 * x * z))) / (2 * x + y) + math.log (3 * x (pow(1,4))) print(b) equation -y- square root of the absolute value of y^2 -4xz divided by 2x + y then add the value to log 3x raise to 1/4

12th Feb 2020, 2:49 AM
Amolap
Amolap - avatar
2 Respuestas
+ 1
Doesn't the error message seem familiar? You are making the same mistake as in your previous question. x (pow(1, 4)) This is not valid, because x is not a function. An operator is missing.
12th Feb 2020, 3:01 AM
Tibor Santa
Tibor Santa - avatar
0
i tried it again
12th Feb 2020, 5:33 AM
Amolap
Amolap - avatar