Hello,
I am a very entry level python user so my knowledge is behind at the moment but I am have a problem creating a function that will take an x range and pass it through as a parameter to my function and output all the results.
For example this is what I have:
def mathFunction():
fx=(x-1)*(x-3)*(x-5)*(x-7)
print fx
for x in range(0-8):
print x, mathFunction(x)
Any help is greatly appreciated.
Thanks!