Can't find what's wrong with this code. Can someone help me to fix this, please ?
def f(x):
a = (-5 * (int(x) ** 5) + 69 (int(x) ** 2) - 47)
return a
print f(0)
Thanks in advance !
An operator is needed between 69 and (int(x) ** 2).
If you meant to use multiplication, then you need to use * explicitly