Completely new to programming so excuse my ignorance. Pretty clear what I was trying to do in the image attached I think. Had to give up and just rewrite the function. Why isn't it accepting g(x)?
def g(x):
return (x**7+3*x)/4
and then
for x in range(4,14):
print g(x)
didn't work so I used
for x in range(4,14):
y=(x**7+3*x)/4
print(y)
Thanks!