+ 1
Python error
Whats wrong with my code it says that pow() missing required argument ‘exp (pos2) b = (-y - math.sqrt (abs((pow(y,2)) - 4*x*z))) / (2*x + y) + pow(math.log(3*x , 1/4))
5 ответов
+ 1
but 1/4 is my second argumet
+ 1
Look again, after we reformat what you wrote:
pow(
math.log(3*x , 1/4)
)
The pow call has only one argument, the result from that math.log call.
0
pow(math.log (3*x), 1/4)????